-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.eslintrc
More file actions
55 lines (55 loc) · 1.29 KB
/
Copy path.eslintrc
File metadata and controls
55 lines (55 loc) · 1.29 KB
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,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
},
},
"rules": {
"indent": [
2,
4,
{"SwitchCase": 1}
],
"quotes": [
2,
"double"
],
"linebreak-style": [
2,
"unix"
],
"semi": [
2,
"always"
],
"dot-notation": 0,
"camelcase": 2,
"strict": 0,
"no-var": 2,
"prefer-const": 2,
"prefer-rest-params": 2,
"no-unreachable": 2,
"no-unused-vars": ["error", {"vars": "all", "args": "none"}],
"eol-last": 2,
"key-spacing": [2, {"beforeColon": false, "afterColon": true}],
"keyword-spacing": [2, {
"before": true,
"after": true
}],
"no-multiple-empty-lines": [2, {"max": 2, "maxEOF": 1}],
"no-trailing-spaces": 2,
"eqeqeq": 2,
"no-alert": 1,
"complexity": [0, 11],
"space-before-function-paren": 2,
"comma-spacing": [2, {"before": false, "after": true}]
},
"env": {
"es6": true,
"node": true,
"browser": true
},
"extends": "eslint:recommended"
}