File tree Expand file tree Collapse file tree 1 file changed +10
-9
lines changed Expand file tree Collapse file tree 1 file changed +10
-9
lines changed Original file line number Diff line number Diff line change 1
1
module . exports = {
2
- parser : " @typescript-eslint/parser" ,
2
+ parser : ' @typescript-eslint/parser' ,
3
3
extends : [
4
- " plugin:react/recommended" ,
5
- " plugin:@typescript-eslint/recommended" ,
6
- " prettier/@typescript-eslint" ,
7
- " plugin:prettier/recommended"
4
+ ' plugin:react/recommended' ,
5
+ ' plugin:@typescript-eslint/recommended' ,
6
+ ' prettier/@typescript-eslint' ,
7
+ ' plugin:prettier/recommended'
8
8
] ,
9
9
parserOptions : {
10
10
ecmaFeatures : {
11
11
jsx : true
12
12
} ,
13
13
ecmaVersion : 2018 ,
14
- sourceType : " module"
14
+ sourceType : ' module'
15
15
} ,
16
16
rules : {
17
- "@typescript-eslint/explicit-function-return-type" : "off" ,
18
- "react/prop-types" : "off"
17
+ '@typescript-eslint/explicit-function-return-type' : 'off' ,
18
+ '@typescript-eslint/explicit-module-boundary-types' : 'off' ,
19
+ 'react/prop-types' : 'off'
19
20
} ,
20
21
settings : {
21
22
react : {
22
- version : " detect"
23
+ version : ' detect'
23
24
}
24
25
}
25
26
} ;
You can’t perform that action at this time.
0 commit comments