You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's sometimes useful to group different blocks of SCSS variables like this:
$fontWeightLight: 300;
$fontWeightRegular: 400;
$lineHeight: 400; // scss/dollar-variable-empty-line-before will complain about empty line before
But this is not allowed at the moment with scss/dollar-variable-empty-line-before rule. Latest stylelint-scss version supports 'after-dollar-variable' as an ignore option, so the rule could be written as this to support this case:
It's sometimes useful to group different blocks of SCSS variables like this:
But this is not allowed at the moment with
scss/dollar-variable-empty-line-before
rule. Lateststylelint-scss
version supports'after-dollar-variable'
as anignore
option, so the rule could be written as this to support this case:Related to: stylelint-scss/stylelint-scss#603
The text was updated successfully, but these errors were encountered: