-
Notifications
You must be signed in to change notification settings - Fork 2
/
.stylelintrc
45 lines (45 loc) · 1.29 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
44
45
{
"extends": "stylelint-config-standard",
"ignoreFiles": "./dist/**",
"plugins": [
"stylelint-order"
],
"rules": {
"at-rule-no-unknown": null,
"indentation": null,
"declaration-colon-space-after": "always",
"declaration-colon-newline-after": null,
"declaration-block-trailing-semicolon": "always",
"no-missing-end-of-source-newline": null,
"property-no-unknown": [ true, {
"ignoreProperties": [
"composes",
"font-smoothing"
]
}],
"color-hex-case": "lower",
"order/order": [
"custom-properties",
"declarations"
],
"order/properties-alphabetical-order": null,
"font-family-name-quotes": "always-unless-keyword",
"string-quotes": "single",
"selector-pseudo-class-no-unknown": [
true,
{
"ignorePseudoClasses": [
"global"
]
}
],
"declaration-empty-line-before": [ "always", { "except": ["first-nested", "after-comment", "after-declaration"] }],
"no-eol-whitespace": [true, {
ignore: ["empty-lines"]
}],
"declaration-block-no-duplicate-properties": null,
"block-closing-brace-newline-after": [ "always", { "ignoreAtRules": ["if", "else"] }],
"selector-pseudo-element-colon-notation": "single",
"no-descending-specificity": null
}
}