-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
31 lines (31 loc) · 1023 Bytes
/
.eslintrc.json
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
{
"extends": [
"plugin:@api3/eslint-plugin-commons/universal",
"next/core-web-vitals"
],
"parserOptions": {
"project": ["./tsconfig.json"]
},
"rules": {
// Some of these can be removed with effort (not addressed by --fix)
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-unsafe-function-type": "off",
"@typescript-eslint/prefer-namespace-keyword": "off",
"@typescript-eslint/prefer-nullish-coalescing": "off",
"eqeqeq": "off",
"functional/no-classes": "off",
"import/no-default-export": "off",
"no-console": "off",
"prefer-named-capture-group": "off",
"prefer-template": "off",
"radix": "off",
"unicorn/filename-case": "off",
"unicorn/no-array-callback-reference": "off",
"unicorn/no-array-push-push": "off",
"unicorn/no-await-expression-member": "off",
"unicorn/number-literal-case": "off",
"unicorn/prefer-code-point": "off",
"unicorn/prefer-string-slice": "off",
"unicorn/prefer-switch": "off"
}
}