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
I think it can be usefull to exclude a block code for one or all rules with comments. Sometimes I want to bypass a rule for browser compatibility reasons, but without disabling this rule for the whole project.
We can do like eslint :
// Disable one or all rules on a whole selector or property group// sass-lint-disable {rule name}.foo { ... }
// sass-lint-enable {rule name}
// Disable one or all rules on a single property.foo {
property: value;
property: value; // sass-lint-disable {rule name}property: value; // sass-lint-ignore {rule name}
}
But personally I don't like to see sass-lint inside by code. I prefer something like (we can purpose both).
I think it can be usefull to exclude a block code for one or all rules with comments. Sometimes I want to bypass a rule for browser compatibility reasons, but without disabling this rule for the whole project.
We can do like eslint :
But personally I don't like to see
sass-lint
inside by code. I prefer something like (we can purpose both).What do you think ?
The text was updated successfully, but these errors were encountered: