-
Notifications
You must be signed in to change notification settings - Fork 1
/
.stylelintrc
31 lines (31 loc) · 1.06 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
{
"extends": ["stylelint-config-standard", "stylelint-config-recommended-vue"],
"rules": {
"no-empty-source": null,
"property-no-vendor-prefix": null,
"number-leading-zero": "always",
"number-no-trailing-zeros": true,
"length-zero-no-unit": true,
"value-list-comma-space-after": "always",
"declaration-colon-space-after": "always",
"value-list-max-empty-lines": 0,
"shorthand-property-no-redundant-values": true,
"declaration-block-no-duplicate-properties": true,
"declaration-block-no-redundant-longhand-properties": true,
"declaration-block-semicolon-newline-after": "always",
"block-closing-brace-newline-after": "always",
"media-feature-colon-space-after": "always",
"media-feature-range-operator-space-after": "always",
"at-rule-name-space-after": "always",
"indentation": 2,
"no-eol-whitespace": true,
"string-no-newline": null,
"string-quotes": "double",
"at-rule-no-unknown": [ true, {
"ignoreAtRules": [
"/-/"
]
}]
},
"ignoreFiles": ["**/*.js","**/*.vue"]
}