Skip to content

Commit

Permalink
Make eslintrc compatible with CodeClimate
Browse files Browse the repository at this point in the history
  • Loading branch information
talyssonoc committed Dec 28, 2016
1 parent 659fa4c commit 42800eb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
},
"extends": "eslint:recommended",
"rules": {
"comma-spacing": ["error", { "before": false, "after": true }],
"indent": ["error", 2],
"linebreak-style": ["error", "unix"],
"quotes": ["error", "single"],
"semi": ["error", "always"]
"comma-spacing": [2, { "before": false, "after": true }],
"indent": [2, 2],
"linebreak-style": [2, "unix"],
"quotes": [2, "single"],
"semi": [2, "always"]
}
}

0 comments on commit 42800eb

Please sign in to comment.