-
Notifications
You must be signed in to change notification settings - Fork 25
/
.stylelintrc
37 lines (36 loc) · 911 Bytes
/
.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
{
"extends": [
"stylelint-config-standard"
],
"plugins": [
"stylelint-order"
],
"customSyntax": "postcss-styled-syntax",
"rules": {
"font-family-name-quotes": "always-unless-keyword",
"function-url-quotes": "always",
"selector-attribute-quotes": "always",
"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"] }
],
"rule-empty-line-before": null,
"no-descending-specificity": null,
"no-duplicate-selectors": null,
"no-empty-source": null,
"declaration-empty-line-before": null,
"function-name-case": null
}
}