forked from commercetools/ui-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc
43 lines (43 loc) · 1.16 KB
/
.stylelintrc
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
35
36
37
38
39
40
41
42
43
{
"extends": [
"stylelint-config-standard",
"stylelint-config-prettier"
],
"plugins": [
"stylelint-order"
],
"rules": {
"font-family-name-quotes": ["always-unless-keyword"],
"function-url-quotes": "always",
"selector-attribute-quotes": "always",
"string-quotes": "single",
"selector-pseudo-class-no-unknown": [
true,
{ "ignorePseudoClasses": ["global"] }
],
"order/properties-order": [
["composes"],
{ "unspecified": "bottom" }
],
"declaration-block-no-duplicate-properties": [
true,
{ "ignoreProperties": ["composes"] }
],
"property-no-unknown": [
true,
{ "ignoreProperties": ["composes"] }
],
"declaration-colon-newline-after": null,
"rule-empty-line-before": null,
"value-list-comma-newline-after": null,
"indentation": null,
"selector-descendant-combinator-no-non-space": null,
"no-descending-specificity": null,
"no-duplicate-selectors": null,
"no-empty-source": null,
"declaration-empty-line-before": null,
"no-missing-end-of-source-newline": null,
"function-name-case": null,
"value-keyword-case": null,
}
}