File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ module.exports = {
26
26
'no-cond-assign' : 'error' ,
27
27
'no-console' : 'error' ,
28
28
'no-const-assign' : 'error' ,
29
+ 'no-constant-binary-expression' : 'error' ,
29
30
'no-control-regex' : 'error' ,
30
31
'no-debugger' : 'error' ,
31
32
'no-delete-var' : 'error' ,
Original file line number Diff line number Diff line change 1
1
module . exports = {
2
- extends : [ './index.js' , 'prettier/react' ] ,
2
+ extends : [ './index.js' ] ,
3
3
plugins : [ 'react' , 'react-hooks' ] ,
4
4
parserOptions : {
5
5
ecmaFeatures : {
@@ -15,6 +15,7 @@ module.exports = {
15
15
'react-hooks/exhaustive-deps' : 'warn' ,
16
16
'react-hooks/rules-of-hooks' : 'error' ,
17
17
'react/jsx-boolean-value' : 'error' ,
18
+ 'react/jsx-curly-brace-presence' : 'error' ,
18
19
'react/jsx-key' : 'error' ,
19
20
'react/jsx-no-duplicate-props' : 'error' ,
20
21
'react/jsx-no-undef' : 'error' ,
You can’t perform that action at this time.
0 commit comments