Skip to content

Commit

Permalink
Enforce balanced block comments
Browse files Browse the repository at this point in the history
  • Loading branch information
feross committed Jul 23, 2016
1 parent 730e8eb commit dab976e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eslintrc.json
Expand Up @@ -135,7 +135,7 @@
"space-in-parens": [2, "never"],
"space-infix-ops": 2,
"space-unary-ops": [2, { "words": true, "nonwords": false }],
"spaced-comment": [2, "always", { "markers": ["global", "globals", "eslint", "eslint-disable", "*package", "!", ","] }],
"spaced-comment": [2, "always", { "line": { "markers": ["eslint", "eslint-disable", "*package", "!", ","] }, "block": { "balanced": true, "markers": ["*package", "!", ","], "exceptions": ["*"] } }],
"template-curly-spacing": [2, "never"],
"unicode-bom": [2, "never"],
"use-isnan": 2,
Expand Down

0 comments on commit dab976e

Please sign in to comment.