Skip to content

Commit fd82730

Browse files
committed
fix(lib/*.js): reorder rules
1 parent 90f90ff commit fd82730

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

lib/base.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ module.exports = {
3434
],
3535
'simple-import-sort/exports': 'error',
3636
'no-console': 'warn',
37+
"no-bitwise": 0,
3738
'no-nested-ternary': 0,
3839
'no-underscore-dangle': 0,
39-
'no-use-before-define': 0,
40-
"no-bitwise": 0
40+
'no-use-before-define': 0
4141
};

lib/next.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
module.exports = {
2+
"react/react-in-jsx-scope": 0,
23
// Next.js overrides
34
"jsx-a11y/href-no-hash": 0,
45
"jsx-a11y/label-has-associated-control": 0,
@@ -11,6 +12,5 @@ module.exports = {
1112
specialLink: ["hrefLeft", "hrefRight"],
1213
aspects: ["invalidHref", "preferButton"],
1314
},
14-
],
15-
"react/react-in-jsx-scope": 0,
15+
]
1616
};

0 commit comments

Comments
 (0)