-
Notifications
You must be signed in to change notification settings - Fork 108
/
.stylelintrc
36 lines (36 loc) · 906 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
28
29
30
31
32
33
34
35
36
{
"extends": "stylelint-config-standard-scss",
"plugins": [
"stylelint-order"
],
"rules": {
"order/properties-alphabetical-order": true,
"color-function-notation": "legacy",
"alpha-value-notation": "number",
"selector-class-pattern": null,
"no-invalid-position-at-import-rule": null,
"scss/at-extend-no-missing-placeholder": null,
"scss/percent-placeholder-pattern": null,
"scss/dollar-variable-pattern": null,
"scss/at-mixin-pattern": null,
"scss/no-global-function-names": null,
"declaration-block-no-redundant-longhand-properties": null,
"selector-not-notation": null,
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"extend",
"include",
"mixin",
"for",
"function",
"if",
"warn",
"return",
"use"
]
}
]
}
}