We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90f90ff commit fd82730Copy full SHA for fd82730
lib/base.js
@@ -34,8 +34,8 @@ module.exports = {
34
],
35
'simple-import-sort/exports': 'error',
36
'no-console': 'warn',
37
+ "no-bitwise": 0,
38
'no-nested-ternary': 0,
39
'no-underscore-dangle': 0,
- 'no-use-before-define': 0,
40
- "no-bitwise": 0
+ 'no-use-before-define': 0
41
};
lib/next.js
@@ -1,4 +1,5 @@
1
module.exports = {
2
+ "react/react-in-jsx-scope": 0,
3
// Next.js overrides
4
"jsx-a11y/href-no-hash": 0,
5
"jsx-a11y/label-has-associated-control": 0,
@@ -11,6 +12,5 @@ module.exports = {
11
12
specialLink: ["hrefLeft", "hrefRight"],
13
aspects: ["invalidHref", "preferButton"],
14
},
- ],
15
- "react/react-in-jsx-scope": 0,
+ ]
16
0 commit comments