Skip to content

Commit

Permalink
Merge pull request #41 from feross/balanced-block-comments
Browse files Browse the repository at this point in the history
Enforce balanced block comments
  • Loading branch information
feross authored Jul 25, 2016
2 parents a8cf1cb + 4e29de1 commit b07455a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,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": ["*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 b07455a

Please sign in to comment.