This repository has been archived by the owner on Oct 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.stylelintrc
48 lines (48 loc) · 1.97 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"],
"plugins": ["stylelint-scss"],
"rules": {
"scss/at-import-partial-extension": "always",
"scss/at-import-partial-extension-whitelist": ["scss"],
"scss/at-mixin-pattern": null,
"scss/at-rule-no-unknown": true,
"scss/dollar-variable-pattern": ["[a-z][a-zA-Z]+", {"ignore": "global"}],
"at-rule-no-unknown": null,
"at-rule-no-vendor-prefix": true,
"color-hex-case": "lower",
"color-hex-length": "long",
"comment-empty-line-before": "always",
"comment-whitespace-inside": "always",
"declaration-block-no-redundant-longhand-properties": null,
"declaration-block-trailing-semicolon": "always",
"declaration-colon-newline-after": null,
"declaration-colon-space-after": "always-single-line",
"declaration-colon-space-before": "never",
"font-family-name-quotes": "always-unless-keyword",
"font-weight-notation": "numeric",
"function-no-unknown": null,
"function-url-quotes": "always",
"indentation": "tab",
"keyframes-name-pattern": null,
"media-feature-colon-space-after": "always",
"media-feature-colon-space-before": "never",
"media-feature-name-no-vendor-prefix": true,
"media-feature-parentheses-space-inside": "never",
"media-feature-range-operator-space-after": "always",
"media-feature-range-operator-space-before": "always",
"no-descending-specificity": null,
"no-duplicate-selectors": true,
"number-leading-zero": "always",
"rule-empty-line-before": "always",
"selector-attribute-brackets-space-inside": "never",
"selector-attribute-operator-space-after": "always",
"selector-attribute-operator-space-before": "always",
"selector-attribute-quotes": "always",
"selector-class-pattern": null,
"selector-combinator-space-after": "always",
"selector-pseudo-class-parentheses-space-inside": "never",
"selector-pseudo-element-colon-notation": "double",
"string-quotes": "single",
"value-no-vendor-prefix": [true, {"ignoreValues":["box", "line-clamp"]}]
}
}