-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy path.eslintrc.json
60 lines (52 loc) · 1.26 KB
/
.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": ["./tsconfig.json"],
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 11,
"sourceType": "module"
},
"plugins": ["react", "react-hooks", "@typescript-eslint", "@typescript-eslint/eslint-plugin"],
"extends": ["eslint:recommended", "plugin:react/recommended", "prettier"],
"settings": {
"react": {
"version": "detect"
}
},
"env": {
"browser": true,
"commonjs": true,
"es2020": true,
"node": true,
"jest": true
},
"rules": {
"no-console": "off",
"no-unused-vars": "warn",
"no-unreachable": "warn",
"strict": ["error", "global"],
"curly": "warn",
/* React Options */
"react/jsx-uses-react": "off",
"react/react-in-jsx-scope": "off",
"react/prefer-stateless-function": 0,
"react/jsx-filename-extension": 0,
"react/jsx-one-expression-per-line": 0,
"react/prop-types": 0,
/* React Hooks Options */
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn"
},
"overrides": [
{
"files": ["*.ts", "*.tsx"],
"rules": {
"no-undef": "off",
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": 1
}
}
]
}