Skip to content

Commit

Permalink
Fix rule value
Browse files Browse the repository at this point in the history
Fixing `at-rule-semicolon-newline-after` to be a string `[ "always" ]` instead of a binary value.
  • Loading branch information
Volker-E committed Oct 7, 2016
1 parent f5ab8c2 commit 932ecfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -15,7 +15,7 @@ module.exports = {
"at-rule-name-case": "lower",
"at-rule-name-space-after": "always-single-line",
"at-rule-no-unknown": true,
"at-rule-semicolon-newline-after": true,
"at-rule-semicolon-newline-after": [ "always" ],

"block-closing-brace-newline-after": [ "always" ],
"block-closing-brace-newline-before": [ "always-multi-line" ],
Expand Down

0 comments on commit 932ecfe

Please sign in to comment.