-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc.js
104 lines (104 loc) · 3.03 KB
/
.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
module.exports = {
root: true,
extends: [
"next",
"next/core-web-vitals",
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended",
"prettier",
],
parser: "@typescript-eslint/parser",
parserOptions: {
project: "tsconfig.json",
tsconfigRootDir: __dirname,
sourceType: "module",
},
plugins: ["@typescript-eslint", "react", "react-hooks", "import"],
rules: {
"no-case-declarations": "off",
"no-inner-declarations": "off",
"prefer-const": "error",
curly: "error",
"spaced-comment": ["error", "always", { block: { balanced: true } }],
radix: "error",
"one-var": ["error", "never"],
"object-shorthand": "error",
"no-var": "error",
"no-param-reassign": "error",
"no-underscore-dangle": "error",
"no-undef-init": "error",
"no-throw-literal": "error",
"no-new-wrappers": "error",
"no-eval": "error",
"no-console": 0, //TODO ['error', { 'allow': ['error', 'warn'] }]
"no-caller": "error",
"no-bitwise": "error",
eqeqeq: ["error", "smart"],
"max-classes-per-file": ["error", 1],
"guard-for-in": "error",
complexity: "error",
"arrow-body-style": "error",
"import/order": "error",
"@typescript-eslint/no-unused-vars": "error",
// Enable if we want to enforce the return type for all the functions
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-inferrable-types": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/array-type": [
"error",
{
default: "generic",
},
],
"@typescript-eslint/await-thenable": "error",
"@typescript-eslint/consistent-type-assertions": "error",
"@typescript-eslint/dot-notation": "error",
"@typescript-eslint/member-delimiter-style": [
"error",
{
multiline: {
delimiter: "semi",
requireLast: true,
},
singleline: {
delimiter: "semi",
requireLast: false,
},
},
],
"@typescript-eslint/no-floating-promises": "error",
"no-unused-expressions": "off",
"@typescript-eslint/no-unused-expressions": ["error"],
"@typescript-eslint/prefer-function-type": "error",
"@typescript-eslint/restrict-plus-operands": "error",
semi: "off",
"@typescript-eslint/semi": ["error"],
"@typescript-eslint/unified-signatures": "error",
"react/prop-types": "off",
"react/display-name": "off",
"react/jsx-key": "error",
"react/jsx-no-bind": ["error", { allowArrowFunctions: true }],
"react-hooks/rules-of-hooks": "warn",
"@typescript-eslint/no-empty-function": [
"error",
{ allow: ["arrowFunctions"] },
],
"react/jsx-uses-react": "off",
"react/react-in-jsx-scope": "off",
},
overrides: [
{
files: ["**/*.test.*"],
rules: {
"@typescript-eslint/no-non-null-assertion": "off",
},
},
],
settings: {
react: {
version: "detect",
},
},
};