-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc
35 lines (35 loc) · 1.13 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
{
"extends": [
"stylelint-config-standard",
"stylelint-config-standard-scss",
"stylelint-prettier/recommended"
],
"plugins": ["stylelint-scss"],
"rules": {
"scss/dollar-variable-pattern": null,
"at-rule-no-unknown": null,
"scss/at-rule-no-unknown": true,
"unit-allowed-list": ["em", "rem", "%", "px", "fr", "vh", "ms", "s", "vw"],
"rule-empty-line-before": null,
"no-duplicate-selectors": true,
"color-hex-length": "long",
"color-named": null,
"selector-no-qualifying-type": [true, { "ignore": ["attribute"] }],
"declaration-no-important": true,
"function-url-quotes": "always",
"font-family-name-quotes": "always-where-recommended",
"comment-whitespace-inside": "always",
"comment-empty-line-before": "always",
"selector-pseudo-element-colon-notation": "double",
"no-descending-specificity": true,
"font-family-no-duplicate-names": true,
"font-family-no-missing-generic-family-keyword": null,
"keyframe-block-no-duplicate-selectors": true
},
"overrides": [
{
"files": ["*.scss", "**/*.scss"],
"customSyntax": "postcss-scss"
}
]
}