-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.stylelintrc
41 lines (41 loc) · 1.18 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
{
"extends": [
"stylelint-config-standard-scss",
"stylelint-prettier/recommended"
],
"plugins": ["stylelint-order"],
"rules": {
"selector-class-pattern": "^[a-z][a-zA-Z0-9]+$",
"scss/percent-placeholder-pattern": "^[a-z][a-zA-Z0-9]+$",
"scss/at-extend-no-missing-placeholder": null,
"at-rule-no-unknown": null,
"scss/at-rule-no-unknown": true,
"selector-pseudo-element-colon-notation": "single",
"declaration-empty-line-before": "never",
"at-rule-empty-line-before": null,
"no-invalid-position-at-import-rule": null,
"scss/at-else-closing-brace-newline-after": "always-last-in-chain",
"scss/at-else-closing-brace-space-after": "always-intermediate",
"scss/at-else-empty-line-before": "never",
"scss/at-if-closing-brace-newline-after": "always-last-in-chain",
"scss/at-if-closing-brace-space-after": "always-intermediate",
"order/order": [
"dollar-variables",
"custom-properties",
{
"type": "at-rule",
"name": "include",
"hasBlock": false
},
"declarations",
"rules",
{
"type": "at-rule",
"name": "include",
"hasBlock": true
}
],
"order/properties-alphabetical-order": true
},
"ignoreFiles": ["**/vendor/**/*.scss"]
}