-
Notifications
You must be signed in to change notification settings - Fork 636
Expand file tree
/
Copy path.stylelintrc.json
More file actions
34 lines (34 loc) · 1.04 KB
/
.stylelintrc.json
File metadata and controls
34 lines (34 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"extends": "stylelint-config-standard",
"plugins": [
"./scripts/stylelint_rules/lib/use_theme_colors.mjs",
"./scripts/stylelint_rules/lib/check_highlight_scope.mjs",
"./scripts/stylelint_rules/lib/use_monospace_font.mjs"
],
"rules": {
"plugin/use_theme_colors": true,
"plugin/check_highlight_scope": true,
"plugin/use_monospace_font": 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-/"]
}
],
"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
}