You need to sign in or sign up before continuing.
Newer
Older
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
{
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
"semi": 1,
"brace-style": 1,
"block-spacing": 1,
"comma-spacing": 1,
"no-var": 1,
"camelcase": 1,
"newline-before-return": 1,
"block-scoped-var": 1,
"dot-location": [
1,
"property"
],
"default-case": 1,
"valid-typeof": 1,
"valid-jsdoc": [
1,
{
"prefer": {
"return": "returns"
},
"requireReturn": false
}
],
"eol-last": 1
},
"env": {
"browser": true,
"node": true
}
}