-
Notifications
You must be signed in to change notification settings - Fork 4
/
.eslintrc
76 lines (76 loc) · 1.94 KB
/
.eslintrc
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"prettier",
"react-hooks",
"jest",
"import"
],
"extends": [
"plugin:jest/recommended",
"plugin:@typescript-eslint/recommended",
"airbnb",
"prettier",
"prettier/@typescript-eslint"
],
"env": {
"browser": true,
"jest": true
},
"settings": {
"import/resolver": {
"node": {
"extensions": [".js", ".ts", ".tsx", ".jsx"]
}
}
},
"rules": {
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "error",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/camelcase": "off",
"@typescript-eslint/no-unused-vars": "off",
"react/jsx-filename-extension": ["error", { "extensions": [".js", ".tsx"] }],
"react/prop-types": "off",
"react/jsx-one-expression-per-line": "off",
"react/jsx-props-no-spreading": "off",
"import/prefer-default-export": "off",
"import/no-unresolved": ["off"],
"import/extensions": "off",
"no-param-reassign": "off",
"arrow-body-style": "off",
"no-plusplus": "off",
"import/no-duplicates": "off",
"import/no-mutable-exports": "off",
"arrow-parens": "off",
"prefer-object-spread": "off",
"no-console": "off",
"no-underscore-dangle": "off",
"no-use-before-define": "off",
"no-unused-vars": "off",
"no-self-compare": "off",
"no-return-assign": "off",
"camelcase": "off"
},
"overrides": [
{
"files": ["**/test/**/*"],
"env": {
"jest": true
},
"rules": {
"import/no-extraneous-dependencies": ["error", { "devDependencies": true }]
}
},
{
"files": ["examples/**/*"],
"rules": {
"import/no-duplicates": "off",
"import/no-extraneous-dependencies": "off"
}
}
]
}