-
Notifications
You must be signed in to change notification settings - Fork 11
/
.stylelintrc
37 lines (37 loc) · 1.14 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
{
"ignoreFiles": [
"**/node_modules/**/*.scss"
],
"plugins": [
"stylelint-scss",
"stylelint-prettier"
],
"extends": [
"stylelint-config-prettier",
"stylelint-config-sass-guidelines"
],
"rules": {
"at-rule-no-vendor-prefix": true,
"color-hex-length": null,
"declaration-block-trailing-semicolon": "always",
"declaration-colon-space-before": "never",
"scss/dollar-variable-pattern": null,
"scss/at-import-partial-extension-blacklist": null,
"indentation": 2,
"max-nesting-depth": 6,
"media-feature-name-no-vendor-prefix": true,
"number-leading-zero": "always",
"order/properties-alphabetical-order": null,
"scss/at-extend-no-missing-placeholder": null,
"scss/at-mixin-pattern": null,
"selector-class-pattern": null,
"selector-combinator-space-after": "always",
"selector-max-compound-selectors": 5,
"selector-max-id": null,
"selector-no-qualifying-type": null,
"shorthand-property-no-redundant-values": null,
"string-quotes": "double",
"color-named": ["never", { "severity": "warning" }],
"scss/at-import-no-partial-leading-underscore" : null
}
}