-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.eslintrc
More file actions
43 lines (43 loc) · 759 Bytes
/
.eslintrc
File metadata and controls
43 lines (43 loc) · 759 Bytes
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
{
"parserOptions": {
"sourceType": "module"
},
"rules": {
"indent": [
2,
2
],
"quotes": [
2,
"single"
],
"linebreak-style": [
2,
"unix"
],
"semi": [
2,
"always"
],
"no-multi-spaces": 0,
"no-underscore-dangle": 0,
"no-use-before-define": 0,
"key-spacing": [
2,
{
"align": "colon",
"beforeColon": true,
"afterColon": true
}
],
"object-curly-spacing": [2, "always"],
"array-bracket-spacing": [2, "always"],
"computed-property-spacing": [2, "always"],
"space-in-parens": [2, "always" ],
"no-unused-vars": [2, { "args": "after-used" }]
},
"env": {
"es6": true,
"node": true
}
}