|
| 1 | +{ |
| 2 | + "extends": ["stylelint-config-standard", "stylelint-config-recommended-scss"], |
| 3 | + "plugins": ["stylelint-scss"], |
| 4 | + "rules": { |
| 5 | + "block-no-empty": true, |
| 6 | + "color-no-invalid-hex": true, |
| 7 | + "custom-property-pattern": "^[a-z0-9]+(?:-[a-z0-9]+)*(?:--[a-z0-9]+(?:-[a-z0-9]+)*)*$", |
| 8 | + "declaration-block-no-duplicate-properties": true, |
| 9 | + "declaration-property-value-no-unknown": null, |
| 10 | + "no-duplicate-selectors": true, |
| 11 | + "selector-class-pattern": "^[a-z0-9]+(?:-[a-z0-9]+)*(?:__(?:[a-z0-9]+(?:-[a-z0-9]+)*))?(?:--(?:[a-z0-9]+(?:-[a-z0-9]+)*))?$", |
| 12 | + |
| 13 | + "scss/load-no-partial-leading-underscore": true, |
| 14 | + "scss/at-mixin-pattern": "^[a-z][a-z0-9-]*$", |
| 15 | + "scss/dollar-variable-pattern": "^[a-z][a-z0-9-]*$", |
| 16 | + |
| 17 | + "comment-empty-line-before": null, |
| 18 | + "declaration-empty-line-before": null, |
| 19 | + "selector-pseudo-element-colon-notation": null, |
| 20 | + "color-function-notation": null, |
| 21 | + "alpha-value-notation": null, |
| 22 | + "value-keyword-case": null, |
| 23 | + "property-no-vendor-prefix": null, |
| 24 | + "rule-empty-line-before": null, |
| 25 | + "at-rule-empty-line-before": null, |
| 26 | + "media-feature-range-notation": null, |
| 27 | + "declaration-block-no-redundant-longhand-properties": null, |
| 28 | + "shorthand-property-no-redundant-values": null, |
| 29 | + "comment-whitespace-inside": null, |
| 30 | + "declaration-property-value-keyword-no-deprecated": null, |
| 31 | + "declaration-block-no-duplicate-properties": null, |
| 32 | + "no-descending-specificity": null, |
| 33 | + "no-duplicate-selectors": null, |
| 34 | + "font-family-no-missing-generic-family-keyword": null, |
| 35 | + "keyframes-name-pattern": null, |
| 36 | + "declaration-block-no-shorthand-property-overrides": null, |
| 37 | + "color-hex-length": null, |
| 38 | + "custom-property-empty-line-before": null, |
| 39 | + "scss/at-mixin-pattern": null, |
| 40 | + "scss/dollar-variable-pattern": null |
| 41 | + } |
| 42 | +} |
0 commit comments