Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: stylelint-config-eyeo/index.js

Issue 29643571: Issue 6203 - Fix rule-empty-line-before in stylelint-config-eyeo (Closed) Base URL: https://hg.adblockplus.org/codingtools
Patch Set: Created Dec. 18, 2017, 9:42 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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",
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld