-
Notifications
You must be signed in to change notification settings - Fork 21
/
.eslintrc.json
40 lines (40 loc) · 1.16 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
{
"env": {
"browser": true,
"es2020": true
},
"extends": [
"plugin:react/recommended",
"airbnb",
"plugin:prettier/recommended"
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 11,
"sourceType": "module"
},
"plugins": [
"react", "prettier"
],
"rules": {
"prettier/prettier": "error",
"react/jsx-one-expression-per-line": "off",
"react/jsx-props-no-spreading": "off",
"react/prop-types": "off",
"react-hooks/rules-of-hooks": "off",
"react-hooks/exhaustive-deps": "off",
"no-unused-expressions": "off",
"react/jsx-filename-extension": [1, { "extensions": [".jsx", ".js"] }],
"import/prefer-default-export": "off",
"import/no-duplicates": "off",
"jsx-a11y/click-events-have-key-events": "off",
"jsx-a11y/label-has-associated-control": "off",
"no-param-reassign": "off",
"no-plusplus": "off",
"camelcase": "off",
"jsx-a11y/no-static-element-interactions": "off",
"react/jsx-curly-newline": "off"
}
}