forked from edrlab/thorium-reader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.json
33 lines (33 loc) · 1.03 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
{
"extends": "stylelint-config-standard",
"rules": {
"declaration-block-no-redundant-longhand-properties": null,
"shorthand-property-no-redundant-values": null,
"selector-class-pattern": null,
"custom-property-pattern": null,
"selector-id-pattern": null,
"keyframes-name-pattern": null,
"property-no-vendor-prefix": null,
"value-no-vendor-prefix": null,
"number-max-precision": null,
"color-function-notation": null,
"alpha-value-notation": null,
"string-quotes": null,
"selector-attribute-quotes": null,
"function-url-quotes": null,
"font-family-name-quotes": null,
"no-descending-specificity": null,
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": ["define-mixin", "mixin", "include"]
}
],
"selector-pseudo-class-no-unknown": [
true,
{
"ignorePseudoClasses": ["global"]
}
]
}
}