Index: stylelint-config-eyeo/index.js |
=================================================================== |
--- a/stylelint-config-eyeo/index.js |
+++ b/stylelint-config-eyeo/index.js |
@@ -35,17 +35,18 @@ |
"declaration-colon-space-after": "always", |
// Selectors and declarations should be on their own line |
"selector-list-comma-newline-after": "always", |
"declaration-block-semicolon-newline-after": "always-multi-line", |
// Separate rules by an empty line |
"rule-empty-line-before": ["always", { |
- "ignore": ["after-comment", "first-nested"] |
+ "ignore": ["after-comment"], |
+ "except": ["first-nested"] |
}], |
// Use double over single quotation marks |
"string-quotes": "double", |
// CSS color values should be specified in hexadecimal where possible |
"color-named": "never", |