forked from nice-digital/nice-design-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc
48 lines (48 loc) · 1.21 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", "stylelint-prettier/recommended"],
"plugins": [
"stylelint-scss",
"stylelint-order"
],
"rules": {
"at-rule-no-unknown": null,
"scss/at-rule-no-unknown": true,
"block-closing-brace-newline-after": [
"always",
{
"ignoreAtRules": ["if", "else"]
}
],
"selector-pseudo-element-colon-notation": "single",
"number-leading-zero": "always",
"declaration-empty-line-before": "never",
"at-rule-empty-line-before": 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",
"**/*.md",
"components/icons/templates/nice-icons.tmpl.scss",
]
}