| { |
| "extends": "stylelint-config-standard", |
| "plugins": ["./scripts/stylelint_rules/lib/use_theme_colors.mjs"], |
| "rules": { |
| "plugin/use_theme_colors": true, |
| "alpha-value-notation": "percentage", |
| "color-function-notation": "modern", |
| "hue-degree-notation": "angle", |
| "comment-empty-line-before": null, |
| "declaration-no-important": true, |
| "color-named": "never", |
| "selector-type-no-unknown": [ |
| true, |
| { |
| "ignoreTypes": ["/^devtools-/", "/^dt-/", "x-link"] |
| } |
| ], |
| "selector-class-pattern": null, |
| "keyframes-name-pattern": null, |
| "selector-no-vendor-prefix": null, |
| "property-no-vendor-prefix": null, |
| "value-no-vendor-prefix": null, |
| "media-feature-name-no-vendor-prefix": null, |
| "no-descending-specificity": null |
| }, |
| "reportNeedlessDisables": true, |
| "reportUnscopedDisables": true |
| } |