-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
.eslintrc.json
53 lines (53 loc) · 1.58 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
{
"env": {
"browser": true,
"es6": true,
"jest": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:jest-dom/recommended",
"plugin:prettier/recommended",
"plugin:testing-library/react"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "tsconfig.json",
"sourceType": "module"
},
"plugins": ["@typescript-eslint", "prettier", "react", "react-hooks"],
"rules": {
"@typescript-eslint/explicit-function-return-type": [
2,
{
"allowExpressions": true,
"allowTypedFunctionExpressions": true,
"allowHigherOrderFunctions": true
}
],
"@typescript-eslint/no-unused-vars": [1, { "args": "after-used" }],
"@typescript-eslint/no-unsafe-return": [0],
"@typescript-eslint/no-use-before-define": [
2,
{
"classes": true,
"functions": false,
"variables": true
}
],
"@typescript-eslint/restrict-template-expressions": [0],
"react/prop-types": [0],
"react-hooks/exhaustive-deps": "warn",
"react-hooks/rules-of-hooks": "error"
},
"settings": {
"react": {
"pragma": "React",
"version": "detect"
}
}
}