-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc.json
34 lines (34 loc) · 974 Bytes
/
.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
{
"extends": "stylelint-config-standard",
"rules": {
"selector-id-pattern": null,
"selector-class-pattern": null,
"no-descending-specificity": null,
"number-max-precision": null,
"selector-no-vendor-prefix": null,
"value-no-vendor-prefix": null,
"at-rule-no-vendor-prefix": null,
"media-feature-name-no-vendor-prefix": null,
"property-no-vendor-prefix": null,
"selector-attribute-quotes": null,
"function-no-unknown": [
true,
{
"ignoreFunctions": [
"alpha"
]
}
],
"comment-empty-line-before": null,
"selector-type-no-unknown": [
true,
{
"ignoreTypes": [
"ogvjs"
]
}
],
"no-duplicate-selectors": null,
"declaration-property-value-no-unknown": true
}
}