Skip to content

Commit

Permalink
[breaking] Change "space-after-keywords" ESLint rule to "keyword-spac…
Browse files Browse the repository at this point in the history
…ing"

Since this is a breaking eslint@2 change, we should bump the package.json version before publishing a new version to npm.

Fixes #84
  • Loading branch information
pdehaan committed Feb 29, 2016
1 parent d8b04bf commit 084d8c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"object-curly-spacing": [2, "never"],
"quotes": [2, "single", "avoid-escape"],
"semi": [2, "always"],
"space-after-keywords": [2, "always"],
"keyword-spacing": [2, {"before": true, "after": true}],
"space-unary-ops": 2
}
}

0 comments on commit 084d8c7

Please sign in to comment.