-
Notifications
You must be signed in to change notification settings - Fork 11
/
.eslintrc.js
34 lines (33 loc) · 920 Bytes
/
.eslintrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
const { overrides } = require('@netlify/eslint-config-node')
module.exports = {
extends: '@netlify/eslint-config-node',
rules: {
'max-depth': 0,
complexity: 0,
'fp/no-let': 0,
'fp/no-loops': 0,
'fp/no-mutation': 0,
'fp/no-mutating-methods': 0,
'id-length': 0,
'max-statements': 0,
'no-await-in-loop': 0,
'node/exports-style': 0,
'node/global-require': 0,
'node/prefer-global/process': 0,
'no-magic-numbers': 0,
'no-negated-condition': 0,
'no-param-reassign': 0,
'no-promise-executor-return': 0,
'no-prototype-builtins': 0,
'no-shadow': 0,
'no-unused-vars': 0,
'no-use-before-define': 0,
'prefer-regex-literals': 0,
'promise/prefer-await-to-callbacks': 0,
'require-await': 0,
'unicorn/consistent-destructuring': 0,
'unicorn/filename-case': 0,
'unicorn/no-array-push-push': 0,
},
overrides: [...overrides],
}