forked from facebookexperimental/rn-chrome-devtools-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.json
31 lines (31 loc) · 818 Bytes
/
.stylelintrc.json
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.js"
],
"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",
"max-empty-lines": 1,
"selector-type-no-unknown": [
true,
{
"ignoreTypes": [
"/^devtools-/"
]
}
],
"max-line-length": null,
"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
}
}