-
Notifications
You must be signed in to change notification settings - Fork 60
/
.stylelintrc
27 lines (26 loc) · 985 Bytes
/
.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
{
"plugins": [
"stylelint-scss"
],
"extends": "stylelint-config-standard",
"rules": {
"scss/at-mixin-argumentless-call-parentheses": "always",
"scss/dollar-variable-colon-newline-after": "always-multi-line",
"scss/dollar-variable-colon-space-after": "always",
"scss/dollar-variable-colon-space-before": "never",
"scss/dollar-variable-no-missing-interpolation": true,
"scss/double-slash-comment-whitespace-inside": "always",
"scss/double-slash-comment-inline": "never",
"scss/operator-no-newline-after": true,
"scss/operator-no-newline-before": true,
"scss/operator-no-unspaced": true,
"scss/selector-no-redundant-nesting-selector": true,
"indentation": "tab",
"at-rule-no-unknown": [true, {
"ignoreAtRules": ["mixin", "extend", "include"],
}],
"unit-no-unknown": [true, {
"ignoreUnits": ["rpx"],
}],
}
}