-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc
29 lines (29 loc) · 1.03 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
{
"extends": [
"stylelint-config-standard",
"stylelint-config-standard-vue",
"stylelint-config-hudochenkov/order"
],
"plugins": ["stylelint-no-unsupported-browser-features"],
"ignoreFiles": ["node_modules/**", "dist/**"],
"rules": {
"no-descending-specificity": null,
"length-zero-no-unit": [true, { "ignore": ["custom-properties"] }],
"function-name-case": "lower",
"selector-type-case": "lower",
"at-rule-empty-line-before": ["always", { "except": ["first-nested"], "ignore": ["after-comment"] }],
"rule-empty-line-before": ["always-multi-line", { "except": ["first-nested"], "ignore": ["after-comment"] }],
"declaration-block-no-redundant-longhand-properties": true,
"shorthand-property-no-redundant-values": true,
"alpha-value-notation": "percentage",
"value-keyword-case": ["lower", { "camelCaseSvgKeywords": true }],
"plugin/no-unsupported-browser-features": [
true,
{
"severity": "warning",
"ignorePartialSupport": true,
"ignore": ["css-nesting", "css3-cursors", "text-size-adjust"]
}
]
}
}