-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc.json
27 lines (27 loc) · 1.01 KB
/
.stylelintrc.json
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
{
"extends": "stylelint-config-standard-scss",
"rules": {
"alpha-value-notation": "number",
"at-rule-empty-line-before": null,
"at-rule-name-space-after": "always",
"at-rule-semicolon-space-before": "never",
"color-function-notation": "legacy",
"color-named": "never",
"font-family-name-quotes": "always-where-required",
"length-zero-no-unit": true,
"max-line-length": null,
"number-leading-zero": "never",
"selector-max-id": 0,
"selector-max-universal": 1,
"shorthand-property-no-redundant-values": true,
"value-list-comma-newline-after": "never-multi-line",
"value-list-comma-newline-before": "never-multi-line",
"value-list-comma-space-after": "always",
"value-no-vendor-prefix": true,
"scss/at-extend-no-missing-placeholder": null,
"scss/at-rule-conditional-no-parentheses": null,
"scss/dollar-variable-colon-space-after": "at-least-one-space",
"scss/dollar-variable-empty-line-before": null,
"scss/no-global-function-names": null
}
}