@@ -5,7 +5,7 @@ module.exports = {
5
5
jest : true ,
6
6
node : true ,
7
7
} ,
8
- extends : [ 'plugin:@typescript-eslint/eslint-recommended' , 'plugin:@typescript-eslint/recommended' ] ,
8
+ extends : [ 'plugin:@typescript-eslint/eslint-recommended' , 'plugin:@typescript-eslint/recommended' ] ,
9
9
parser : '@typescript-eslint/parser' ,
10
10
plugins : [ '@typescript-eslint' ] ,
11
11
settings : {
@@ -20,11 +20,11 @@ module.exports = {
20
20
rules : {
21
21
'@typescript-eslint/ban-ts-ignore' : [ 'off' ] ,
22
22
'@typescript-eslint/camelcase' : [ 'off' ] ,
23
- '@typescript-eslint/explicit-function-return-type' : [ 'error' , { allowExpressions : true } ] ,
23
+ '@typescript-eslint/explicit-function-return-type' : [ 'error' , { allowExpressions : true } ] ,
24
24
'@typescript-eslint/explicit-member-accessibility' : 'error' ,
25
- '@typescript-eslint/indent' : [ 'error' , 2 , { SwitchCase : 1 } ] ,
25
+ '@typescript-eslint/indent' : [ 'error' , 2 , { SwitchCase : 1 } ] ,
26
26
'@typescript-eslint/interface-name-prefix' : [ 'off' ] ,
27
- '@typescript-eslint/member-delimiter-style' : [ 'error' , { multiline : { delimiter : 'none' } } ] ,
27
+ '@typescript-eslint/member-delimiter-style' : [ 'error' , { multiline : { delimiter : 'none' } } ] ,
28
28
'@typescript-eslint/member-ordering' : [
29
29
'error' ,
30
30
{
@@ -45,33 +45,23 @@ module.exports = {
45
45
] ,
46
46
'@typescript-eslint/no-explicit-any' : 'error' ,
47
47
'@typescript-eslint/no-inferrable-types' : [ 'off' ] ,
48
- '@typescript-eslint/no-unused-vars' : [ 'error' , { argsIgnorePattern : '^_' } ] ,
48
+ '@typescript-eslint/no-unused-vars' : [ 'error' , { argsIgnorePattern : '^_' } ] ,
49
49
'@typescript-eslint/no-use-before-define' : [ 'off' ] ,
50
- '@typescript-eslint/semi' : [ 'error' , 'always' ] ,
51
- 'array-bracket-spacing' : [ 'error' , 'always' , { singleValue : false } ] ,
52
- 'arrow-body-style' : [ 'error' , 'as-needed' ] ,
53
- 'computed-property-spacing' : [ 'error' , 'never' ] ,
54
- 'func-style' : [ 'warn' , 'expression' ] ,
55
- indent : [ 'error' , 2 , { SwitchCase : 1 } ] ,
50
+ '@typescript-eslint/semi' : [ 'error' , 'always' ] ,
51
+ 'array-bracket-spacing' : [ 'error' , 'always' , { singleValue : false } ] ,
52
+ 'arrow-body-style' : [ 'error' , 'as-needed' ] ,
53
+ 'computed-property-spacing' : [ 'error' , 'never' ] ,
54
+ 'func-style' : [ 'warn' , 'expression' ] ,
55
+ indent : [ 'error' , 2 , { SwitchCase : 1 } ] ,
56
56
'keyword-spacing' : 'error' ,
57
57
'newline-before-return' : 2 ,
58
58
'no-console' : 0 ,
59
- 'no-multi-spaces' : [ 'error' , { ignoreEOLComments : false } ] ,
60
- 'no-multiple-empty-lines' : [ 'error' , { max : 1 , maxBOF : 0 } ] ,
59
+ 'no-multi-spaces' : [ 'error' , { ignoreEOLComments : false } ] ,
60
+ 'no-multiple-empty-lines' : [ 'error' , { max : 1 , maxBOF : 0 } ] ,
61
61
'no-throw-literal' : 'error' ,
62
- 'object-curly-spacing' : [ 'error' , 'always' ] ,
62
+ 'object-curly-spacing' : [ 'error' , 'always' ] ,
63
63
'prefer-arrow-callback' : 'error' ,
64
- quotes : [ 'error' , 'single' , { allowTemplateLiterals : true } ] ,
65
- semi : [ 'error' , 'always' ] ,
66
- 'sort-imports' : [
67
- 'error' ,
68
- {
69
- allowSeparatedGroups : true ,
70
- ignoreCase : true ,
71
- ignoreDeclarationSort : false ,
72
- ignoreMemberSort : true ,
73
- memberSyntaxSortOrder : [ 'all' , 'single' , 'multiple' , 'none' ] ,
74
- } ,
75
- ] ,
64
+ quotes : [ 'error' , 'single' , { allowTemplateLiterals : true } ] ,
65
+ semi : [ 'error' , 'always' ]
76
66
} ,
77
67
} ;
0 commit comments