-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.stylelintrc
48 lines (48 loc) · 1.81 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
46
47
48
{
"extends": [
"stylelint-config-standard",
"stylelint-config-standard-scss",
"stylelint-config-prettier"
],
"plugins": ["stylelint-order"],
"rules": {
"at-rule-no-unknown": null,
"block-no-empty": [true, {
"ignore": ["comments", "mixin"]
}],
"block-opening-brace-space-before": "always",
"block-opening-brace-space-after": "always-single-line",
"block-closing-brace-space-before": "always-single-line",
"value-keyword-case": ["lower", {
"camelCaseSvgKeywords": true
}],
"color-hex-case": "lower",
"color-hex-length": "short",
"declaration-block-semicolon-space-after": "always-single-line",
"declaration-colon-space-after": "always",
"function-comma-space-after": "always",
"function-no-unknown": null,
"function-whitespace-after": "always",
"length-zero-no-unit": true,
"indentation": 4,
"max-empty-lines": 2,
"no-descending-specificity": null,
"no-invalid-position-at-import-rule": null,
"number-leading-zero": "always",
"order/properties-alphabetical-order": true,
"property-no-vendor-prefix": null,
"selector-no-vendor-prefix": null,
"selector-pseudo-class-no-unknown": [true, {
"ignorePseudoClasses": ["global", "local"]
}],
"selector-class-pattern": null,
"value-no-vendor-prefix": null,
"scss/at-rule-no-unknown": true,
"scss/at-import-no-partial-leading-underscore": null,
"scss/at-import-partial-extension": null,
"scss/at-extend-no-missing-placeholder": null,
"scss/comment-no-empty": null,
"scss/dollar-variable-colon-space-after": null,
"scss/no-global-function-names": null
}
}