File tree 1 file changed +7
-7
lines changed
1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -2,16 +2,15 @@ module.exports = {
2
2
root : true ,
3
3
parser : '@typescript-eslint/parser' ,
4
4
parserOptions : {
5
- ecmaVersion : 2018 ,
6
- sourceType : 'module'
5
+ ecmaVersion : 2020 ,
6
+ sourceType : 'module' ,
7
7
} ,
8
8
extends : [
9
9
'plugin:@typescript-eslint/recommended' ,
10
- 'prettier/@typescript-eslint' ,
11
- 'plugin:prettier/recommended'
10
+ 'plugin:prettier/recommended' ,
12
11
] ,
13
12
env : {
14
- node : true
13
+ node : true ,
15
14
} ,
16
15
rules : {
17
16
'@typescript-eslint/no-empty-interface' : [ 'off' ] ,
@@ -20,7 +19,8 @@ module.exports = {
20
19
'@typescript-eslint/no-explicit-any' : [ 'off' ] ,
21
20
'@typescript-eslint/explicit-member-accessibility' : [ 'off' ] ,
22
21
'@typescript-eslint/no-empty-function' : [ 'off' ] ,
22
+ '@typescript-eslint/explicit-module-boundary-types' : [ 'off' ] ,
23
23
'prefer-const' : [ 'off' ] ,
24
- 'prefer-rest-params' : [ 'off' ]
25
- }
24
+ 'prefer-rest-params' : [ 'off' ] ,
25
+ } ,
26
26
} ;
You can’t perform that action at this time.
0 commit comments