-
Notifications
You must be signed in to change notification settings - Fork 5
/
.stylelintrc
128 lines (128 loc) · 5.59 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"rules": {
"at-rule-name-case": "lower",
"at-rule-no-vendor-prefix": true,
"at-rule-name-space-after": "always",
"block-closing-brace-empty-line-before": "never",
"block-closing-brace-newline-after": "always",
"block-closing-brace-space-before": "always-single-line",
"block-no-empty": true,
"block-opening-brace-newline-after": "always-multi-line",
"block-opening-brace-space-after": "always-single-line",
"block-opening-brace-space-before": "always-single-line",
"color-named": "never",
"comment-empty-line-before": "always",
"comment-no-empty": true,
"comment-whitespace-inside": "always",
"custom-property-empty-line-before": [
"always", {
except: ["after-comment", "after-custom-property", "first-nested"],
}
],
"declaration-bang-space-after": "never",
"declaration-bang-space-before": "always",
"declaration-colon-space-after": "always-single-line",
"declaration-colon-space-before": "never",
"declaration-block-no-duplicate-properties": true,
"declaration-block-no-shorthand-property-overrides": true,
"declaration-block-semicolon-newline-after": "always",
"declaration-block-semicolon-newline-before": "never-multi-line",
"declaration-block-semicolon-space-after": "always-single-line",
"declaration-block-single-line-max-declarations": 1,
"declaration-block-trailing-semicolon": "always",
"declaration-empty-line-before": "never",
"font-family-name-quotes": "always-where-recommended",
"function-comma-newline-after": "always-multi-line",
"function-comma-newline-before": "never-multi-line",
"function-comma-space-after": "always-single-line",
"function-comma-space-before": "never",
"function-linear-gradient-no-nonstandard-direction": true,
"function-name-case": "lower",
"function-url-no-scheme-relative": true,
"function-url-quotes": "always",
"function-whitespace-after": "always",
"indentation": [
2,
indentInsideParens: ["once-at-root-twice-in-block"],
ignore: ["value", "param"],
indentClosingBrace: false,
],
"keyframe-declaration-no-important": true,
"length-zero-no-unit": true,
"max-line-length": 80,
"max-empty-lines": 5,
"media-feature-colon-space-after": "always",
"media-feature-colon-space-before": "never",
"media-feature-name-case": "lower",
"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",
"media-query-list-comma-newline-after": "always",
"media-query-list-comma-newline-before": "never-multi-line",
"media-query-list-comma-space-after": "always-single-line",
"media-query-list-comma-space-before": "never",
"no-empty-source": true,
"no-eol-whitespace": true,
"no-extra-semicolons": true,
"no-missing-end-of-source-newline": true,
"property-case": "lower",
"property-no-vendor-prefix": true,
"rule-non-nested-empty-line-before": [
"always",
ignore: ["after-comment"]
],
"root-no-standard-properties": true,
"selector-attribute-brackets-space-inside": "never",
"selector-attribute-operator-space-after": "never",
"selector-attribute-operator-space-before": "never",
"selector-attribute-quotes": "always",
"selector-combinator-space-after": "always",
"selector-combinator-space-before": "always",
"selector-max-empty-lines": 0,
"selector-no-id": true,
"selector-pseudo-class-case": "lower",
"selector-pseudo-class-no-unknown": true,
"selector-pseudo-class-parentheses-space-inside": "never",
"selector-pseudo-element-case": "lower",
"selector-pseudo-element-colon-notation": "single",
"selector-pseudo-element-no-unknown": true,
"selector-list-comma-newline-after": "always-multi-line",
"selector-list-comma-newline-before": "never-multi-line",
"selector-list-comma-space-after": "always-single-line",
"selector-list-comma-space-before": "never",
"selector-max-compound-selectors": 3,
"selector-type-no-unknown": true,
"shorthand-property-no-redundant-values": true,
"string-quotes": "double",
"unit-case": "lower",
"unit-no-unknown": true,
"value-no-vendor-prefix": true,
"value-list-comma-space-after": "always-single-line",
'scss/at-extend-no-missing-placeholder': null,
'scss/at-function-pattern': '^[a-z][a-z0-9-_]{0,30}[a-z0-9]$',
'scss/at-import-no-partial-leading-underscore': true,
'scss/at-import-partial-extension-blacklist': ['scss'],
'scss/at-import-partial-extension-whitelist': null,
'scss/at-mixin-argumentless-call-parentheses': 'always',
'scss/at-mixin-pattern': '^[a-z][a-z0-9-_]{0,40}[a-z0-9]$',
'scss/dollar-variable-colon-newline-after': 'always-multi-line',
'scss/dollar-variable-colon-space-after': 'always-single-line',
'scss/dollar-variable-colon-space-before': 'never',
'scss/dollar-variable-no-missing-interpolation': true,
'scss/dollar-variable-pattern': '^[a-z][a-z0-9-_]{0,50}[a-z0-9]$',
'scss/double-slash-comment-empty-line-before': null,
'scss/double-slash-comment-inline': null,
'scss/double-slash-comment-whitespace-inside': 'always',
'scss/media-feature-value-dollar-variable': 'always',
'scss/operator-no-newline-after': true,
'scss/operator-no-newline-before': null,
'scss/operator-no-unspaced': true,
'scss/partial-no-import': null,
'scss/percent-placeholder-pattern': '^[a-z][a-z0-9-_]{0,30}[a-z0-9]$',
'scss/selector-no-redundant-nesting-selector': true
},
"plugins": [
"stylelint-scss"
]
}