Skip to content

Commit

Permalink
Allow @extend and no-space at rules in blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
admturner committed Apr 3, 2018
1 parent b5faa78 commit 88f2d98
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .stylelintrc.yml
@@ -1,11 +1,13 @@
"rules": {
"at-rule-empty-line-before": [ "always", {
except: ["blockless-after-blockless"],
except: ["blockless-after-blockless", "inside-block"],
ignore: ["after-comment"],
} ],
"at-rule-name-case": "lower",
"at-rule-name-space-after": "always-single-line",
"at-rule-no-unknown": true,
"at-rule-no-unknown": [ true, {
ignoreAtRules: ["extend"],
} ],
"at-rule-semicolon-newline-after": "always",
"block-closing-brace-newline-after": "always",
"block-closing-brace-newline-before": "always",
Expand Down

0 comments on commit 88f2d98

Please sign in to comment.