forked from honestbleeps/Reddit-Enhancement-Suite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.json
42 lines (42 loc) · 1.33 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
39
40
41
42
{
"defaultSeverity": "error",
"extends": [
"stylelint-config-standard-scss",
"stylelint-config-standard",
"stylelint-config-recommended",
"stylelint-config-sass-guidelines"
],
"plugins": [
"stylelint-scss"
],
"rules": {
"alpha-value-notation": null,
"color-hex-case": null,
"color-named": null,
"color-function-notation": null,
"declaration-property-value-disallowed-list": null,
"font-family-no-missing-generic-family-keyword": [true, { "ignoreFontFamilies": "Batch" }],
"font-family-name-quotes": null,
"function-no-unknown": null,
"hue-degree-notation": null,
"indentation": "tab",
"keyframes-name-pattern": null,
"max-line-length": null,
"max-nesting-depth": null,
"no-descending-specificity": null,
"number-leading-zero": null,
"order/properties-alphabetical-order": null,
"scss/double-slash-comment-empty-line-before": null,
"scss/at-function-pattern": null,
"scss/at-mixin-pattern": null,
"scss/dollar-variable-colon-space-after": null,
"selector-attribute-quotes": null,
"selector-class-pattern": null,
"selector-id-pattern": null,
"selector-max-compound-selectors": null,
"selector-max-id": null,
"selector-no-qualifying-type": null,
"shorthand-property-no-redundant-values": null,
"string-quotes": "single"
}
}