-
Notifications
You must be signed in to change notification settings - Fork 4
/
.eslintrc.json
42 lines (40 loc) · 931 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
40
41
42
{
"env": {
"browser": true,
"node": true,
"jest": true
},
"extends": [
"airbnb-typescript",
"airbnb/hooks",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"prettier",
"prettier/react",
"prettier/@typescript-eslint"
],
"parserOptions": {
"project": "./tsconfig.json"
},
"plugins": ["prettier"],
"rules": {
"prettier/prettier": "error",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-explicit-any": "off",
"react/prop-types": "off", // typescript covers typing fully
"jsx-a11y/label-has-associated-control": [
"error",
{
"assert": "either",
"depth": 2
}
],
"import/prefer-default-export": "off",
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": true
}
]
}
}