-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
39 lines (39 loc) · 901 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
32
33
34
35
36
37
38
39
{
"root": true,
"extends": [
"react-important-stuff",
"plugin:prettier/recommended",
"eslint:recommended",
"plugin:react/recommended",
"./eslint-config-linter.js"
],
"plugins": [
"react",
"import",
"@typescript-eslint"
],
"parser": "@babel/eslint-parser",
"rules": {
"react/react-in-jsx-scope": "off",
"no-debugger": "off",
"no-control-regex": "off",
"import/prefer-default-export": "off",
"no-unused-vars": "off",
"no-use-before-define": "off",
"no-undef": "off",
"react/prop-types": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-explicit-any": "error",
"react-hooks/exhaustive-deps": "off",
"no-console": "off",
"no-unsafe-optional-chaining": "off",
"react/no-unknown-property": [
"error",
{
"ignore": [
"css"
]
}
]
}
}