We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72888bd commit efb5d27Copy full SHA for efb5d27
lib/base.js
@@ -37,4 +37,5 @@ module.exports = {
37
'no-nested-ternary': 0,
38
'no-underscore-dangle': 0,
39
'no-use-before-define': 0,
40
+ "no-bitwise": 0
41
};
lib/next.js
@@ -1,6 +1,9 @@
1
module.exports = {
2
// Next.js overrides
3
"jsx-a11y/href-no-hash": 0,
4
+ "jsx-a11y/label-has-associated-control": 0,
5
+ "jsx-a11y/label-has-for": 0,
6
+ "jsx-a11y/iframe-has-title": 0,
7
"jsx-a11y/anchor-is-valid": [
8
"error",
9
{
lib/react.js
@@ -7,4 +7,5 @@ module.exports = {
],
"react/jsx-props-no-spreading": 0,
"react/prop-types": 0,
10
+ "react-hooks/exhaustive-deps": 0,
11
0 commit comments