Skip to content

Commit

Permalink
New rule: must have space after semicolon in for-loop
Browse files Browse the repository at this point in the history
This is another of those rules that we used to enforce when we used
jscs. There aren’t many more (or any?) that eslint is missing!
  • Loading branch information
feross committed Sep 16, 2015
1 parent 77266c5 commit 6e5025e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@
"quotes": [2, "single", "avoid-escape"],
"radix": 2,
"semi": [2, "never"],
"semi-spacing": [2, { "before": false, "after": true }],
"space-after-keywords": [2, "always"],
"space-before-blocks": [2, "always"],
"space-before-function-paren": [2, "always"],
Expand Down

0 comments on commit 6e5025e

Please sign in to comment.