This repository has been archived by the owner on Mar 20, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
.stylelintrc
48 lines (48 loc) · 2 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",
"plugins": [
"stylelint-scss",
"stylelint-order"
],
"rules": {
"scss/at-else-closing-brace-space-after": "never-intermediate",
"scss/at-else-empty-line-before": "never",
"scss/dollar-variable-colon-space-after": "always",
"scss/dollar-variable-colon-space-before": "never",
"scss/dollar-variable-empty-line-before": "never",
"scss/double-slash-comment-empty-line-before": "never",
"scss/double-slash-comment-inline": "never",
"scss/double-slash-comment-whitespace-inside": "always",
"scss/declaration-nested-properties": "always",
"scss/media-feature-value-dollar-variable": "never",
"scss/selector-no-redundant-nesting-selector": true,
"order/properties-alphabetical-order": true,
"indentation": 2,
"string-quotes": "double",
"no-duplicate-selectors": true,
"color-hex-case": "upper",
"color-hex-length": "short",
"color-named": "never",
"selector-combinator-space-after": "always",
"selector-attribute-quotes": "always",
"selector-attribute-operator-space-before": "always",
"selector-attribute-operator-space-after": "always",
"selector-attribute-brackets-space-inside": "never",
"declaration-block-trailing-semicolon": "always",
"declaration-colon-space-before": "never",
"declaration-colon-space-after": "always-single-line",
"number-leading-zero": "never",
"function-url-quotes": "always",
"font-family-name-quotes": "always-where-recommended",
"comment-whitespace-inside": "always",
"comment-empty-line-before": "always",
"rule-empty-line-before": "always",
"selector-pseudo-element-colon-notation": "double",
"selector-pseudo-class-parentheses-space-inside": "never",
"media-feature-range-operator-space-before": "always",
"media-feature-range-operator-space-after": "always",
"media-feature-parentheses-space-inside": "never",
"media-feature-colon-space-before": "never",
"media-feature-colon-space-after": "always"
}
}