File tree 3 files changed +203
-225
lines changed
3 files changed +203
-225
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"env" : {
3
- "browser" : true ,
4
- "node" : true ,
5
- "es6" : true ,
6
- "es2017" : true
3
+ "browser" : true ,
4
+ "node" : true ,
5
+ "es6" : true ,
6
+ "es2017" : true
7
7
},
8
8
"overrides" : [
9
9
{
10
- "files" : [" *.ts" ],
10
+ "files" : [
11
+ " *.ts"
12
+ ],
11
13
"extends" : [
12
14
" eslint:recommended" ,
13
15
" plugin:@typescript-eslint/eslint-recommended" ,
25
27
],
26
28
"sourceType" : " module" ,
27
29
"ecmaFeatures" : {
28
- "modules" : true
30
+ "modules" : true
29
31
}
30
32
},
31
33
"plugins" : [
34
36
],
35
37
"rules" : {
36
38
"@typescript-eslint/indent" : [
37
- " error" , 2 , {
39
+ " error" ,
40
+ 2 ,
41
+ {
38
42
"SwitchCase" : 1 ,
39
- "CallExpression" : {"arguments" : " first" },
40
- "FunctionExpression" : {"parameters" : " first" },
41
- "FunctionDeclaration" : {"parameters" : " first" }
43
+ "CallExpression" : {
44
+ "arguments" : " first"
45
+ },
46
+ "FunctionExpression" : {
47
+ "parameters" : " first"
48
+ },
49
+ "FunctionDeclaration" : {
50
+ "parameters" : " first"
51
+ }
42
52
}
43
53
],
44
54
"@typescript-eslint/no-empty-function" : 0 ,
55
65
}
56
66
},
57
67
{
58
- "files" : [" *.component.html" ],
68
+ "files" : [
69
+ " *.component.html"
70
+ ],
59
71
"parser" : " @angular-eslint/template-parser" ,
60
- "plugins" : [" @angular-eslint/template" ],
72
+ "plugins" : [
73
+ " @angular-eslint/template"
74
+ ],
61
75
"rules" : {
62
- "@angular-eslint/template/banana-in-box" : " error" ,
63
- "@angular-eslint/template/no-negated-async" : " error"
76
+ "@angular-eslint/template/banana-in-box" : " error" ,
77
+ "@angular-eslint/template/no-negated-async" : " error"
64
78
}
65
79
}
66
80
]
You can’t perform that action at this time.
0 commit comments