File tree 5 files changed +3555
-879
lines changed
5 files changed +3555
-879
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "root" : true ,
3
+ "ignorePatterns" : [
4
+ " projects/**/*"
5
+ ],
6
+ "overrides" : [
7
+ {
8
+ "files" : [
9
+ " *.ts"
10
+ ],
11
+ "parserOptions" : {
12
+ "project" : [
13
+ " tsconfig.json" ,
14
+ " e2e/tsconfig.json"
15
+ ],
16
+ "createDefaultProgram" : true
17
+ },
18
+ "extends" : [
19
+ " plugin:@angular-eslint/recommended" ,
20
+ " plugin:@angular-eslint/template/process-inline-templates"
21
+ ],
22
+ "rules" : {
23
+ "@angular-eslint/component-selector" : [
24
+ " error" ,
25
+ {
26
+ "prefix" : " app" ,
27
+ "style" : " kebab-case" ,
28
+ "type" : " element"
29
+ }
30
+ ],
31
+ "@angular-eslint/directive-selector" : [
32
+ " error" ,
33
+ {
34
+ "prefix" : " app" ,
35
+ "style" : " camelCase" ,
36
+ "type" : " attribute"
37
+ }
38
+ ]
39
+ }
40
+ },
41
+ {
42
+ "files" : [
43
+ " *.html"
44
+ ],
45
+ "extends" : [
46
+ " plugin:@angular-eslint/template/recommended"
47
+ ],
48
+ "rules" : {}
49
+ }
50
+ ]
51
+ }
Original file line number Diff line number Diff line change 101
101
"polyfills" : " src/polyfills.ts" ,
102
102
"tsConfig" : " tsconfig.spec.json" ,
103
103
"karmaConfig" : " karma.conf.js" ,
104
- "codeCoverageExclude" : [" src/ckeditor5-build-classic/**" ],
104
+ "codeCoverageExclude" : [
105
+ " src/ckeditor5-build-classic/**"
106
+ ],
105
107
"assets" : [
106
108
" src/favicon.ico" ,
107
109
" src/favicon.png" ,
116
118
}
117
119
},
118
120
"lint" : {
119
- "builder" : " @angular-devkit/build-angular:tslint " ,
121
+ "builder" : " @angular-eslint/builder:lint " ,
120
122
"options" : {
121
- "tsConfig" : [
122
- " tsconfig.app.json" ,
123
- " tsconfig.spec.json" ,
124
- " e2e/tsconfig.json"
125
- ],
126
- "exclude" : [
127
- " **/node_modules/**"
123
+ "lintFilePatterns" : [
124
+ " src/**/*.ts" ,
125
+ " src/**/*.html"
128
126
]
129
127
}
130
128
},
144
142
}
145
143
},
146
144
"cli" : {
147
- "analytics" : false
145
+ "analytics" : false ,
146
+ "schematicCollections" : [
147
+ " @angular-eslint/schematics"
148
+ ]
148
149
}
149
150
}
You can’t perform that action at this time.
0 commit comments