forked from ChromeDevTools/devtools-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.stylelintrc.json
More file actions
31 lines (31 loc) · 823 Bytes
/
.stylelintrc.json
File metadata and controls
31 lines (31 loc) · 823 Bytes
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
{
"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-/"
]
}
],
"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
}
}