-
Notifications
You must be signed in to change notification settings - Fork 12
/
.eslintrc
72 lines (72 loc) · 1.36 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
{
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"parser": "@babel/eslint-parser",
"settings": {
"react": {
"version": "16.8"
}
},
"ignorePatterns": "build/**",
"env": {
"node": true,
"browser": true,
"es6": 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"
]
}
]
},
"overrides": [
{
"files": ["./**/*.md", "./**/*.mdx"],
"rules": {
"no-trailing-spaces": 0
}
}
]
}