-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
56 lines (56 loc) · 1.34 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
{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json",
"ecmaFeatures": {
"jsx": true
}
},
"root": true,
"env": {
"browser": true,
"es6": true,
"jest": true
},
"extends": [
"airbnb-base",
"eslint:recommended",
"plugin:prettier/recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:jsx-a11y/strict"
],
"plugins": ["@typescript-eslint", "react-hooks"],
"rules": {
"prettier/prettier": "warn",
"import/no-unresolved": 0,
"import/prefer-default-export": 0,
"import/extensions": 0,
"@typescript-eslint/explicit-function-return-type": 0,
"@typescript-eslint/explicit-module-boundary-types": 0,
"react/prop-types": 0,
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn",
"spaced-comment": [2, "always", { "markers": ["/"] }]
},
"overrides": [
{
"files": [
"src/**/*.test.{ts,tsx}",
"src/setupTests.ts",
"src/utils/testUtils.tsx"
],
"rules": {
"import/no-extraneous-dependencies": 0
}
}
],
"settings": {
"react": {
"pragma": "React",
"version": "detect"
}
}
}