File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -33,17 +33,19 @@ module.exports = tseslint.config(
33
33
"@angular-eslint/component-class-suffix" : [
34
34
"error" ,
35
35
{
36
- suffixes : [ "" , "Component" ]
36
+ suffixes : [ "" , "Component" ]
37
37
}
38
38
] ,
39
+ "semi" : [ "error" , "always" ] ,
40
+ "comma-dangle" : [ "error" , "always-multiline" ] ,
39
41
"no-undefined" : "error" ,
40
42
"no-var" : "error" ,
41
43
"prefer-const" : "error" ,
42
44
"func-names" : "error" ,
43
45
"id-length" : "error" ,
44
46
"newline-before-return" : "error" ,
45
47
"space-before-blocks" : "error" ,
46
- "no-alert" : "error"
48
+ "no-alert" : "error"
47
49
} ,
48
50
} ,
49
51
{
Original file line number Diff line number Diff line change @@ -7,6 +7,6 @@ export const appConfig: ApplicationConfig = {
7
7
providers : [
8
8
provideBrowserGlobalErrorListeners ( ) ,
9
9
provideZoneChangeDetection ( { eventCoalescing : true } ) ,
10
- provideRouter ( routes )
11
- ]
10
+ provideRouter ( routes ) ,
11
+ ] ,
12
12
} ;
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import { RouterOutlet } from '@angular/router';
5
5
selector : 'app-root' ,
6
6
imports : [ RouterOutlet ] ,
7
7
templateUrl : './app.html' ,
8
- styleUrl : './app.css'
8
+ styleUrl : './app.css' ,
9
9
} )
10
10
export class App {
11
11
protected title = 'angular-starter' ;
You can’t perform that action at this time.
0 commit comments