forked from eBay/ebayui-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc
33 lines (33 loc) · 1.25 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
33
{
"extends": ["stylelint-config-standard", "stylelint-prettier/recommended"],
"customSyntax": "postcss-less",
"rules": {
"block-closing-brace-empty-line-before": "never",
"block-closing-brace-newline-before": "always",
"block-opening-brace-newline-after": "always",
"block-opening-brace-space-before": "always",
"declaration-colon-space-after": "always",
"declaration-block-no-duplicate-properties": [
true,
"ignore": ["consecutive-duplicates-with-different-values"]
],
"declaration-block-single-line-max-declarations": 1,
"function-calc-no-unspaced-operator": true,
"selector-max-empty-lines": 0,
"selector-type-case": "lower",
"unit-case": "lower",
"unit-no-unknown": true,
"indentation": 4,
"max-empty-lines": 1,
"no-empty-source": true,
"no-eol-whitespace": true,
"no-extra-semicolons": true,
"number-max-precision": null,
"shorthand-property-no-redundant-values": null,
"property-no-vendor-prefix": null,
"selector-no-vendor-prefix": null,
"selector-class-pattern": null,
"alpha-value-notation": null,
"value-no-vendor-prefix": null
}
}