-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathstylelint.config.mjs
More file actions
22 lines (22 loc) · 902 Bytes
/
stylelint.config.mjs
File metadata and controls
22 lines (22 loc) · 902 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
export default {
extends: ["stylelint-config-standard", "stylelint-config-standard-scss"],
rules: {
"at-rule-empty-line-before": null,
"block-no-empty": true,
"color-hex-length": null,
"comment-empty-line-before": null,
"declaration-block-single-line-max-declarations": 2,
"rule-empty-line-before": null,
"selector-class-pattern": null,
"scss/at-if-closing-brace-newline-after": null,
"scss/at-if-closing-brace-space-after": null,
"scss/at-rule-conditional-no-parentheses": null,
"scss/comment-no-empty": null,
"scss/dollar-variable-empty-line-before": null,
"scss/dollar-variable-colon-space-after": null,
"scss/dollar-variable-pattern": ['^(-?[a-z][a-z0-9]*)(-[a-zA-Z0-9]+)*$',],
"scss/double-slash-comment-empty-line-before": null,
"scss/double-slash-comment-whitespace-inside": null,
"scss/operator-no-unspaced": null,
}
};