-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc
32 lines (32 loc) · 1.18 KB
/
.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
{
"ignoreFiles": "./server/public/**/*.css",
"extends": "stylelint-config-recommended",
"rules": {
"selector-list-comma-newline-after": null,
"block-closing-brace-empty-line-before": null,
"rule-empty-line-before": "always",
"declaration-empty-line-before": null,
"font-family-name-quotes": "always-where-recommended",
"color-named": "always-where-possible",
"comment-empty-line-before": null,
"comment-whitespace-inside": null,
"function-url-quotes": "never",
"string-quotes": "single",
"declaration-no-important": true,
"no-duplicate-selectors": true,
"selector-max-id": 0,
"number-max-precision": 2 ,
"shorthand-property-no-redundant-values": true,
"selector-no-qualifying-type": [true, {"ignore": "attribute"}],
"selector-max-universal": 0,
"selector-no-vendor-prefix": true,
"property-no-vendor-prefix": true,
"media-feature-name-case": "lower",
"number-no-trailing-zeros": true,
"number-leading-zero": "never",
"value-keyword-case": "lower",
"no-extra-semicolons": true,
"declaration-block-no-shorthand-property-overrides": true,
"declaration-block-no-redundant-longhand-properties": true
}
}