11{
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+ ],
412 "parser" : " @typescript-eslint/parser" ,
513 "parserOptions" : {
614 "ecmaVersion" : 9 ,
1826 "no-unused-vars" : " off" ,
1927 "camelcase" : " off" ,
2028 "@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+ ],
2235 "@typescript-eslint/no-require-imports" : " error" ,
2336 "@typescript-eslint/array-type" : " error" ,
2437 "@typescript-eslint/await-thenable" : " error" ,
2538 "@typescript-eslint/ban-ts-comment" : " error" ,
2639 "@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+ ],
2946 "@typescript-eslint/no-array-constructor" : " error" ,
3047 "@typescript-eslint/no-empty-interface" : " error" ,
3148 "@typescript-eslint/no-explicit-any" : " off" ,
4663 "@typescript-eslint/promise-function-async" : " error" ,
4764 "@typescript-eslint/require-array-sort-compare" : " error" ,
4865 "@typescript-eslint/restrict-plus-operands" : " error" ,
49- "@typescript-eslint/type-annotation-spacing" : " error" ,
5066 "@typescript-eslint/unbound-method" : " error" ,
5167 "@typescript-eslint/no-shadow" : " error" ,
5268 "no-shadow" : " off" ,
5571 },
5672 "overrides" : [
5773 {
58- "files" : [" *.ts" ],
74+ "files" : [
75+ " *.ts"
76+ ],
5977 "rules" : {
6078 "no-undef" : " off"
6179 }
6684 "es6" : true ,
6785 "jest/globals" : true
6886 }
69- }
87+ }
0 commit comments