We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f599b4 commit b9ee66eCopy full SHA for b9ee66e
.eslintrc
@@ -1,17 +1,19 @@
1
{
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
- }
+ "extends": "google",
+ "env": {
+ "node": true,
+ "mocha": true
+ },
+ "parserOptions": {
+ "ecmaVersion": 6
+ "rules": {
+ "comma-dangle": [2, "never"],
+ "max-len": [2, {
+ "code": 100,
+ "tabWidth": 2
+ }],
+ "keyword-spacing": 2,
17
+ "indent": [2, 2, { "SwitchCase": 1 }]
18
+ }
19
}
0 commit comments