-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
.stylelintrc.json
38 lines (38 loc) · 1.19 KB
/
.stylelintrc.json
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
{
"extends": [
"stylelint-config-standard",
"stylelint-config-recommended-scss"
],
"rules": {
"selector-class-pattern": null,
"import-notation": null,
"selector-attribute-quotes": null,
"shorthand-property-no-redundant-values": null,
"function-url-quotes": null,
"selector-id-pattern": null,
"alpha-value-notation": null,
"color-function-notation": null,
"scss/no-global-function-names": null,
"scss/function-quote-no-quoted-strings-inside": null,
"property-no-vendor-prefix": null,
"declaration-block-no-redundant-longhand-properties": null,
"no-descending-specificity": null,
"no-duplicate-selectors": null,
"at-rule-empty-line-before": ["always", {
"except": [
"blockless-after-same-name-blockless",
"first-nested"
],
"ignore": ["after-comment"],
"ignoreAtRules": ["else"]
}],
"value-keyword-case": [
"lower",
{
"ignoreProperties": [
"$font-family-monospace"
]
}
]
}
}