forked from l3mpire/lemverse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc.json
27 lines (27 loc) · 959 Bytes
/
.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": {
"color-function-notation": "legacy",
"property-no-vendor-prefix": null,
"scss/double-slash-comment-empty-line-before": null,
"scss/double-slash-comment-whitespace-inside": null,
"selector-id-pattern": null,
"no-descending-specificity": null,
"selector-class-pattern": null,
"scss/no-global-function-names": null,
"length-zero-no-unit": null,
"number-leading-zero": null,
"color-hex-case": null,
"alpha-value-notation": null,
"scss/at-import-no-partial-leading-underscore": null,
"value-no-vendor-prefix": null,
"at-rule-empty-line-before": null,
"declaration-empty-line-before": null,
"scss/dollar-variable-empty-line-before": null,
"scss/comment-no-empty": null,
"custom-property-empty-line-before": null,
"rule-empty-line-before": null,
"number-max-precision": null,
"selector-no-vendor-prefix": null
}
}