-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
56 lines (55 loc) · 1.05 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
{
"parserOptions": {
"ecmaVersion": 6,
"ecmaFeatures": {
"jsx": true
}
},
"env": {
"browser": true,
"node": true,
"amd": true,
"es6": true
},
"extends": "defaults/configurations/walmart/es6-node",
"root": true,
"rules": {
"indent": [
2,
4,
{
"VariableDeclarator": 2
}
],
"quotes": [
2,
"single",
"avoid-escape"
],
"camelcase": 0,
"func-style": [
2,
"declaration"
],
"filenames/filenames": [
2,
"^[a-z_]+$"
],
"global-require": 0,
"max-statements": [
2,
20
],
"max-len": [
2,
120,
4
],
"no-use-before-define": 0,
"no-console": 0,
"no-process-exit": 0,
"new-cap": 0,
"no-invalid-this": 0,
"curly": 0
}
}