|
1 |
| -const { overrides } = require("@netlify/eslint-config-node/react_config"); |
| 1 | +const { overrides } = require('@netlify/eslint-config-node/react_config') |
2 | 2 |
|
3 | 3 | module.exports = {
|
4 |
| - extends: "@netlify/eslint-config-node/react_config", |
| 4 | + extends: '@netlify/eslint-config-node/react_config', |
5 | 5 | rules: {
|
6 |
| - "max-depth": 0, |
| 6 | + 'max-depth': 0, |
7 | 7 | complexity: 0,
|
8 |
| - "fp/no-let": 0, |
9 |
| - "fp/no-loops": 0, |
10 |
| - "fp/no-mutation": 0, |
11 |
| - "fp/no-mutating-methods": 0, |
12 |
| - "id-length": 0, |
13 |
| - "max-statements": 0, |
14 |
| - "no-await-in-loop": 0, |
15 |
| - "node/exports-style": 0, |
16 |
| - "node/global-require": 0, |
17 |
| - "node/prefer-global/process": 0, |
18 |
| - "no-magic-numbers": 0, |
19 |
| - "no-param-reassign": 0, |
20 |
| - "no-promise-executor-return": 0, |
21 |
| - "no-prototype-builtins": 0, |
22 |
| - "no-shadow": 0, |
23 |
| - "no-unused-vars": 0, |
24 |
| - "prefer-regex-literals": 0, |
25 |
| - "promise/prefer-await-to-callbacks": 0, |
26 |
| - "require-await": 0, |
27 |
| - "unicorn/consistent-function-scoping": 0, |
28 |
| - "unicorn/filename-case": 0, |
29 |
| - "unicorn/no-array-push-push": 0, |
| 8 | + 'fp/no-let': 0, |
| 9 | + 'fp/no-loops': 0, |
| 10 | + 'fp/no-mutation': 0, |
| 11 | + 'fp/no-mutating-methods': 0, |
| 12 | + 'id-length': 0, |
| 13 | + 'max-statements': 0, |
| 14 | + 'no-await-in-loop': 0, |
| 15 | + 'node/exports-style': 0, |
| 16 | + 'node/global-require': 0, |
| 17 | + 'node/prefer-global/process': 0, |
| 18 | + 'no-magic-numbers': 0, |
| 19 | + 'no-param-reassign': 0, |
| 20 | + 'no-promise-executor-return': 0, |
| 21 | + 'no-prototype-builtins': 0, |
| 22 | + 'no-shadow': 0, |
| 23 | + 'no-unused-vars': 0, |
| 24 | + 'prefer-regex-literals': 0, |
| 25 | + 'promise/prefer-await-to-callbacks': 0, |
| 26 | + 'require-await': 0, |
| 27 | + 'unicorn/consistent-function-scoping': 0, |
| 28 | + 'unicorn/filename-case': 0, |
| 29 | + 'unicorn/no-array-push-push': 0, |
30 | 30 | },
|
31 | 31 | env: {
|
32 | 32 | jest: true,
|
33 | 33 | },
|
34 | 34 | overrides: [...overrides],
|
35 |
| -}; |
| 35 | +} |
0 commit comments