File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree 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/directive-selector" : [
24+ " error" ,
25+ {
26+ "type" : " attribute" ,
27+ "prefix" : " app" ,
28+ "style" : " camelCase"
29+ }
30+ ],
31+ "@angular-eslint/component-selector" : [
32+ " error" ,
33+ {
34+ "type" : " element" ,
35+ "prefix" : " app" ,
36+ "style" : " kebab-case"
37+ }
38+ ]
39+ }
40+ },
41+ {
42+ "files" : [
43+ " *.html"
44+ ],
45+ "extends" : [
46+ " plugin:@angular-eslint/template/recommended"
47+ ],
48+ "rules" : {}
49+ }
50+ ]
51+ }
You can’t perform that action at this time.
0 commit comments