Skip to content

Commit

Permalink
fixing indentation in .eslintrc and adding missing rules around spaci…
Browse files Browse the repository at this point in the history
…ng and indentation
  • Loading branch information
richardgirges committed Apr 30, 2017
1 parent 8f599b4 commit b9ee66e
Showing 1 changed file with 17 additions and 15 deletions.
32 changes: 17 additions & 15 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
{
"extends": "google",
"env": {
"node": true,
"mocha": true
},
"parserOptions": {
"ecmaVersion": 6
},
"rules": {
"comma-dangle": [2, "never"],
"max-len": [2, {
"code": 100,
"tabWidth": 2
}]
}
"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,
"indent": [2, 2, { "SwitchCase": 1 }]
}
}

0 comments on commit b9ee66e

Please sign in to comment.