Skip to content

Commit b9ee66e

Browse files
committed
fixing indentation in .eslintrc and adding missing rules around spacing and indentation
1 parent 8f599b4 commit b9ee66e

File tree

1 file changed

+17
-15
lines changed

1 file changed

+17
-15
lines changed

.eslintrc

+17-15
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
11
{
2-
"extends": "google",
3-
"env": {
4-
"node": true,
5-
"mocha": true
6-
},
7-
"parserOptions": {
8-
"ecmaVersion": 6
9-
},
10-
"rules": {
11-
"comma-dangle": [2, "never"],
12-
"max-len": [2, {
13-
"code": 100,
14-
"tabWidth": 2
15-
}]
16-
}
2+
"extends": "google",
3+
"env": {
4+
"node": true,
5+
"mocha": true
6+
},
7+
"parserOptions": {
8+
"ecmaVersion": 6
9+
},
10+
"rules": {
11+
"comma-dangle": [2, "never"],
12+
"max-len": [2, {
13+
"code": 100,
14+
"tabWidth": 2
15+
}],
16+
"keyword-spacing": 2,
17+
"indent": [2, 2, { "SwitchCase": 1 }]
18+
}
1719
}

0 commit comments

Comments
 (0)