forked from shaka-project/shaka-player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.csslintrc
24 lines (24 loc) · 790 Bytes
/
.csslintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"extends": "stylelint-config-standard",
"customSyntax": "postcss-less",
"rules": {
"font-family-no-missing-generic-family-keyword": null,
"declaration-block-single-line-max-declarations": null,
"declaration-empty-line-before": null,
"max-line-length": [80, {
ignorePattern: "/^@import\\s+/",
}],
"function-no-unknown": [true, {
ignoreFunctions: [
"data-uri",
"lighten",
"percentage",
],
}],
"property-no-vendor-prefix": null,
"selector-list-comma-newline-after": "always-multi-line",
"selector-no-vendor-prefix": null,
"selector-pseudo-element-colon-notation": "single",
"unit-allowed-list": ["em", "%", "px", "s", "deg", "vmin", "ms", "vh"]
}
}