-
Notifications
You must be signed in to change notification settings - Fork 90
/
.eslintrc.cjs
84 lines (84 loc) · 2.16 KB
/
.eslintrc.cjs
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
module.exports = {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"prettier",
"react"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended",
"plugin:react/recommended"
],
"overrides": [
{
"files": [
"*.ts",
"*.tsx"
]
}
],
"settings": {
"react": {
"version": "detect"
}
},
"env": {
"browser": true,
"node": false
},
"parserOptions": {
"project": "tsconfig.json",
"ecmaVersion": 2020,
"sourceType": "module",
"jsx": true
},
"rules": {
"prettier/prettier": "warn",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/ban-types": "warn",
"@typescript-eslint/prefer-for-of": "error",
"@typescript-eslint/no-for-in-array": "error",
"@typescript-eslint/no-require-imports": "off",
"@typescript-eslint/no-parameter-properties": "off",
"@typescript-eslint/explicit-member-accessibility": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "warn",
"no-shadow": "off",
"@typescript-eslint/no-shadow": "error",
"@typescript-eslint/no-object-literal-type-assertion": "off",
"@typescript-eslint/no-namespace": "error",
"linebreak-style": [
"error",
"unix"
],
"no-irregular-whitespace": [
"error",
{
"skipComments": true
}
],
"no-alert": "off",
"prefer-const": "error",
"no-return-assign": "error",
"no-useless-call": "error",
"no-useless-concat": "error",
"no-console": "off",
"no-undef": "off",
"no-unreachable": "off",
"react/no-deprecated": "warn",
"react/no-string-refs": "warn",
"@typescript-eslint/no-var-requires": "off",
"react/no-find-dom-node": "warn",
"react/no-unescaped-entities": "off",
"no-prototype-builtins": "warn",
"@typescript-eslint/ban-ts-comment": "warn"
},
"globals": {
"__COMMIT_HASH__": true
}
};