-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc
37 lines (37 loc) · 979 Bytes
/
.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
{
"extends": "stylelint-config-standard",
"rules": {
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"mixin",
"extends",
"ignores",
"include",
"for"
]
}
],
"color-no-invalid-hex": true,
"comment-no-empty": true,
"unit-no-unknown": true,
"selector-attribute-quotes": "always",
"max-nesting-depth": 6,
"selector-max-compound-selectors": 6,
"declaration-no-important": null,
"selector-class-pattern": "[a-z-]+",
"selector-id-pattern": "[a-z-]+",
"font-family-no-duplicate-names": true,
"string-no-newline": true,
"property-no-unknown": null,
"selector-type-no-unknown": null,
"no-descending-specificity": null,
"declaration-block-no-duplicate-properties": null,
"no-empty-source": null,
"no-duplicate-selectors": null,
"font-family-no-missing-generic-family-keyword": null,
"length-zero-no-unit": true,
"declaration-block-no-shorthand-property-overrides": null
}
}