-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Angular 13 -> 16 + prettier + remove primeng
- Loading branch information
Showing
116 changed files
with
7,565 additions
and
6,203 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"tabWidth": 4, | ||
"singleQuote": true, | ||
"printWidth": 120, | ||
"quoteProps": "consistent", | ||
"overrides": [ | ||
{ | ||
"files": "*.html", | ||
"options": { | ||
"parser": "angular" | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,10 @@ | ||
import { Component, HostBinding } from '@angular/core'; | ||
|
||
@Component({ | ||
selector : 'arig-app', | ||
templateUrl: './app.component.html', | ||
selector: 'arig-app', | ||
templateUrl: './app.component.html', | ||
}) | ||
export class AppComponent { | ||
|
||
@HostBinding('class') | ||
cssClass = 'd-flex flex-column'; | ||
|
||
@HostBinding('class') | ||
cssClass = 'd-flex flex-column'; | ||
} |
Oops, something went wrong.