1 change: 1 addition & 0 deletions 1 .stylelintrc.json Original file line numberDiff line numberDiff line change @@ -2,6 +2,7 @@ "extends": "stylelint-config-standard", "rules": { "comment-empty-line-before": null, "media-feature-range-notation": null, "no-descending-specificity...
Clearly describe the bug I've placed/* stylelint-disable */and/* stylelint-enable */around a block of styles, the errors however are still showing in my reports. This is the same if I try to ignore a single line or a block of styles. Which rule, if any, is the bug related to?
https://gerrit.wikimedia.org/r/404508) Change subject: Disable no-descending-specificity stylelint rule ... Disable no-descending-specificity stylelint rule The rule is sometimes hard to satisfy, especially given our mixture of styling by ID and styling by class (which have different specificity)...
Change subject: Disable no-descending-specificity stylelint rule ... Disable no-descending-specificity stylelint rule The rule is sometimes hard to satisfy, especially given our mixture of styling by ID and styling by class (which have different specificity). Perhaps we can reintroduce it at some...
The /* stylelint-disable */ inline comment rule disabling seem to not be applying with stylelint@2.0.0 The following will still throw value-list-comma-space-after errors: .foo { /* stylelint-disable value-list-comma-space-after */ foo: bar,baz,qux; /* stylelint-enable */ }...
/* stylelint-disable */ .selector { color: red; } .selector { color: red; // stylelint-disable } Valid: /* stylelint-disable color-named */ .selector { color: red; } .selector { color: red; // stylelint-disable color-named } Some people in the team think that turning off ...
Would be super cool to add a stylelint-disable-next-line flag a la TSLint so my comments could always live on their own line. current syntax: .selector { // this color is essential color: blue !important; // stylelint-disable-line declar...
/* stylelint-disable color-named */$colors:('error':red,'warning':yellow );/* stylelint-enable */ a{color:#000,/* stylelint-disable-line value-list-comma-space-before */#FFF; } So, it appears to be something to do with the stylelint-disable-line command being used within avalue...
renchap deleted the disable-stylelint-prettier-scss-rules branch August 8, 2024 19:32 justinwritescode pushed a commit to justinwritescode/mastodon that referenced this pull request Sep 15, 2024 Disable stylelint rules that are conflicting with Prettier (mastodon#… … bc4f581 Sign up for...
/* stylelint-disable selector-max-type */ /* stylelint-disable selector-max-universal */ *, ::after, ::before { box-sizing: border-box; padding: 0; margin: 0; } a { color: inherit; text-decoration: inherit; } What stylelint configuration is needed to reproduce the bug? e.g. ...