-
-
Notifications
You must be signed in to change notification settings - Fork 88
/
.eslintrc
34 lines (33 loc) · 902 Bytes
/
.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
{
"extends": "airbnb",
"plugins": [
"react-hooks"
],
"env": {
"node": true,
"browser": true
},
"rules": {
"no-await-in-loop": 0,
"react/prop-types": 0,
"react/forbid-prop-types": 0,
"arrow-parens": 0,
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn",
"import/no-extraneous-dependencies": ["error", {
"devDependencies": true,
"optionalDependencies": false
}],
"jsx-a11y/control-has-associated-label": 0,
"no-console": 0,
"object-curly-newline": 0,
"max-len": 0,
"react/jsx-one-expression-per-line": 0,
"react/no-multi-comp": 0,
"jsx-a11y/click-events-have-key-events": 0,
"jsx-a11y/accessible-emoji": 0,
"no-multiple-empty-lines": ["error", { "max": 2, "maxBOF": 0, "maxEOF": 0 }],
"no-promise-executor-return": 0,
"react/function-component-definition": 0
}
}