-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.json
43 lines (43 loc) · 1.33 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
{
"env": {
"browser": true,
"es2021": true
},
"extends": [
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"google"
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": [
"react",
"react-hooks"
],
"rules": {
"linebreak-style": "off",
"indent": ["error", 2],
"no-unused-expressions": "warn",
"no-unused-vars": "warn",
"object-curly-spacing": ["error", "always"],
"max-len": ["error", { "code": 120 }],
"operator-linebreak": ["error", "before"],
"react/jsx-boolean-value": ["error"],
"react/jsx-closing-tag-location": ["error"],
"react/jsx-closing-bracket-location": ["error"],
"react/jsx-first-prop-new-line": ["error"],
"react/jsx-equals-spacing": ["error", "never"],
"react/jsx-indent": ["error", 2],
"react/jsx-max-props-per-line": ["error", { "when": "multiline" }],
"react/jsx-pascal-case": ["error"],
"react/jsx-props-no-multi-spaces": ["error"],
"react/jsx-props-no-spreading": ["error"],
"react/jsx-tag-spacing": ["error", {"beforeClosing": "never"}],
"react/jsx-wrap-multilines": ["error"]
}
}