forked from micro-lc/react-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
42 lines (42 loc) · 1.03 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
{
"extends": ["react-app", "plugin:react/recommended"],
"parser": "@babel/eslint-parser",
"settings": {
"react": {
"version": "17.0"
}
},
"env": {
"mocha": true
},
"rules": {
"no-console": 2,
"no-unused-vars": 2,
"object-curly-spacing": [2, "never"],
"operator-linebreak": [2, "after"],
"react/jsx-closing-bracket-location": 2,
"react/jsx-curly-brace-presence": "off",
"react/jsx-first-prop-new-line": 2,
"react/jsx-no-literals": 2,
"react/jsx-sort-props": 2,
"react/jsx-wrap-multilines": [
2,
{
"declaration": "parens-new-line",
"assignment": "parens-new-line",
"return": "parens-new-line",
"arrow": "parens-new-line"
}
],
"react/no-multi-comp": [2, { "ignoreStateless": true }],
"react/no-unused-prop-types": 2,
"react/no-unused-state": 2,
"react/sort-prop-types": 2,
"react/sort-comp": [
2,
{
"order": ["static-methods", "lifecycle", "everything-else", "render"]
}
]
}
}