-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patheslintrc.json
102 lines (102 loc) · 1.76 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
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"settings": {
"react": {
"version": "999.999.999"
}
},
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"jest": true,
"node": true
},
"plugins": [
"prettier"
],
"extends": [
"plugin:react/recommended",
"standard",
"standard-jsx",
"prettier",
"prettier/react",
"prettier/standard"
],
"rules": {
"quotes": [
"error",
"single",
{
"avoidEscape": true
}
],
"object-curly-spacing": [
"error",
"always"
],
"space-before-function-paren": 0,
"comma-dangle": [
"error",
{
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline",
"functions": "always-multiline"
}
],
"no-else-return": [
"error",
{
"allowElseIf": false
}
],
"generator-star-spacing": [
"error",
{
"before": false,
"after": true
}
],
"no-return-await": 2,
"require-await": 2,
"keyword-spacing": [
"error",
{
"before": true,
"after": true,
"overrides": {
"return": {
"after": true
},
"throw": {
"after": true
},
"case": {
"after": true
}
}
}
],
"jsx-quotes": [
"error",
"prefer-double"
],
"react/jsx-curly-spacing": [
"error",
"never",
{
"allowMultiline": true
}
],
"prettier/prettier": [
"error",
{
"trailingComma": "all",
"singleQuote": true,
"semi": false
}
],
"react/prefer-stateless-function": 1
}
}