forked from RobertAKARobin/util
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.json
39 lines (39 loc) · 1.03 KB
/
.stylelintrc.json
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
{
"extends": "stylelint-config-standard-scss",
"ignoreFiles": [
"node_modules/**"
],
"overrides": [
{
"customSyntax": "postcss-html",
"files": [
"src/**/*.astro",
"src/**/*.md"
]
}
],
"plugins": ["stylelint-order"],
"rules": {
"alpha-value-notation": "number",
"at-rule-empty-line-before": null,
"color-hex-case": "upper",
"color-hex-length": "long",
"comment-empty-line-before": null,
"font-family-name-quotes": "always-unless-keyword",
"font-family-no-missing-generic-family-keyword": null,
"indentation": "tab",
"max-empty-lines": null,
"max-line-length": null,
"no-descending-specificity": null,
"number-leading-zero": "never",
"order/properties-alphabetical-order": true,
"property-no-vendor-prefix": null,
"scss/at-mixin-pattern": null,
"scss/dollar-variable-empty-line-before": null,
"scss/dollar-variable-pattern": null,
"scss/double-slash-comment-empty-line-before": null,
"selector-class-pattern": null,
"selector-pseudo-class-no-unknown": null,
"string-quotes": "single"
}
}