Skip to content

Commit 63845af

Browse files
committed
Simplify eslint rules
1 parent 2d0f4ae commit 63845af

File tree

1 file changed

+1
-23
lines changed

1 file changed

+1
-23
lines changed

.eslintrc.js

Lines changed: 1 addition & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -9,27 +9,5 @@ module.exports = {
99
},
1010
overrides: [...overrides],
1111
extends: 'prettier',
12-
rules: {
13-
'max-depth': 0,
14-
complexity: 0,
15-
'fp/no-let': 0,
16-
'fp/no-loops': 0,
17-
'fp/no-mutation': 0,
18-
'fp/no-mutating-methods': 0,
19-
'id-length': 0,
20-
'max-statements': 0,
21-
'no-await-in-loop': 0,
22-
'node/exports-style': 0,
23-
'node/global-require': 0,
24-
'node/prefer-global/process': 0,
25-
'no-magic-numbers': 0,
26-
'no-param-reassign': 0,
27-
'no-promise-executor-return': 0,
28-
'no-prototype-builtins': 0,
29-
'no-shadow': 0,
30-
'no-unused-vars': 0,
31-
'prefer-regex-literals': 0,
32-
semi: 0,
33-
'promise/prefer-await-to-callbacks': 0,
34-
},
12+
rules: {},
3513
}

0 commit comments

Comments
 (0)