-
Notifications
You must be signed in to change notification settings - Fork 11
/
.stylelintrc
28 lines (28 loc) · 992 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
{
"extends": "stylelint-config-standard",
"rules": {
"at-rule-empty-line-before": null,
"block-closing-brace-newline-after": ["always", {
"ignoreAtRules": ["if", "else"]
}],
"block-closing-brace-space-before": null,
"color-named": null,
"color-no-hex": null,
"comment-empty-line-before": null,
"declaration-block-no-duplicate-properties": true,
"declaration-block-semicolon-space-after": null,
"declaration-block-single-line-max-declarations": 3,
"declaration-colon-newline-after": null,
"indentation": "tab",
"max-empty-lines": 5,
"max-nesting-depth": 5,
"number-no-trailing-zeros": null,
"selector-class-pattern": "^[a-z]+(?:-[a-z0-9]+)*(?:__[a-z0-9\\-]+){0,2}(?:--[a-z0-9\\-]+)?$",
"selector-list-comma-newline-after": null,
"shorthand-property-no-redundant-values": null,
"string-quotes": "single",
"selector-max-id": 0,
"value-list-comma-newline-after": null
},
"ignoreFiles": ["**/css/normalize.css", "**/css/materialdesignicons.css"]
}