1
1
{
2
- "plugins" : [" github" , " jest" , " @typescript-eslint" ],
3
- "extends" : [" plugin:github/recommended" , " plugin:github/typescript" , " prettier" ],
2
+ "plugins" : [
3
+ " github" ,
4
+ " jest" ,
5
+ " @typescript-eslint"
6
+ ],
7
+ "extends" : [
8
+ " plugin:github/recommended" ,
9
+ " plugin:github/typescript" ,
10
+ " prettier"
11
+ ],
4
12
"parser" : " @typescript-eslint/parser" ,
5
13
"parserOptions" : {
6
14
"ecmaVersion" : 9 ,
18
26
"no-unused-vars" : " off" ,
19
27
"camelcase" : " off" ,
20
28
"@typescript-eslint/no-unused-vars" : " error" ,
21
- "@typescript-eslint/explicit-member-accessibility" : [" error" , {"accessibility" : " no-public" }],
29
+ "@typescript-eslint/explicit-member-accessibility" : [
30
+ " error" ,
31
+ {
32
+ "accessibility" : " no-public"
33
+ }
34
+ ],
22
35
"@typescript-eslint/no-require-imports" : " error" ,
23
36
"@typescript-eslint/array-type" : " error" ,
24
37
"@typescript-eslint/await-thenable" : " error" ,
25
38
"@typescript-eslint/ban-ts-comment" : " error" ,
26
39
"@typescript-eslint/consistent-type-assertions" : " error" ,
27
- "@typescript-eslint/explicit-function-return-type" : [" error" , {"allowExpressions" : true }],
28
- "@typescript-eslint/func-call-spacing" : [" error" , " never" ],
40
+ "@typescript-eslint/explicit-function-return-type" : [
41
+ " error" ,
42
+ {
43
+ "allowExpressions" : true
44
+ }
45
+ ],
29
46
"@typescript-eslint/no-array-constructor" : " error" ,
30
47
"@typescript-eslint/no-empty-interface" : " error" ,
31
48
"@typescript-eslint/no-explicit-any" : " off" ,
46
63
"@typescript-eslint/promise-function-async" : " error" ,
47
64
"@typescript-eslint/require-array-sort-compare" : " error" ,
48
65
"@typescript-eslint/restrict-plus-operands" : " error" ,
49
- "@typescript-eslint/type-annotation-spacing" : " error" ,
50
66
"@typescript-eslint/unbound-method" : " error" ,
51
67
"@typescript-eslint/no-shadow" : " error" ,
52
68
"no-shadow" : " off" ,
55
71
},
56
72
"overrides" : [
57
73
{
58
- "files" : [" *.ts" ],
74
+ "files" : [
75
+ " *.ts"
76
+ ],
59
77
"rules" : {
60
78
"no-undef" : " off"
61
79
}
66
84
"es6" : true ,
67
85
"jest/globals" : true
68
86
}
69
- }
87
+ }
0 commit comments