UNPKG

818 BJSONView Raw
1{
2 "extends": "stylelint-config-standard",
3 "plugins": [
4 "./scripts/stylelint_rules/lib/use_theme_colors.js"
5 ],
6 "rules": {
7 "plugin/use_theme_colors": true,
8 "alpha-value-notation": "percentage",
9 "color-function-notation": "modern",
10 "hue-degree-notation": "angle",
11 "comment-empty-line-before": null,
12 "declaration-no-important": true,
13 "color-named": "never",
14 "max-empty-lines": 1,
15 "selector-type-no-unknown": [
16 true,
17 {
18 "ignoreTypes": [
19 "/^devtools-/"
20 ]
21 }
22 ],
23 "max-line-length": null,
24 "selector-class-pattern": null,
25 "keyframes-name-pattern": null,
26 "selector-no-vendor-prefix": null,
27 "property-no-vendor-prefix": null,
28 "value-no-vendor-prefix": null,
29 "media-feature-name-no-vendor-prefix": null
30 }
31}