-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.stylelintrc
30 lines (30 loc) · 945 Bytes
/
.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
{
"extends": [
"stylelint-config-clean-order",
"stylelint-config-standard-scss"
],
"plugins": [
"stylelint-scss"
],
"ignoreFiles": [
"**/*.min.css"
],
"rules": {
"at-rule-empty-line-before": null,
"custom-property-empty-line-before": null,
"declaration-empty-line-before": null,
"no-descending-specificity": null,
"no-invalid-double-slash-comments": null,
"no-invalid-position-at-import-rule": null,
"selector-class-pattern": null,
"selector-pseudo-class-no-unknown": null,
"scss/at-else-empty-line-before": null,
"scss/at-extend-no-missing-placeholder": null,
"scss/at-if-closing-brace-newline-after": null,
"scss/at-mixin-parentheses-space-before": null,
"scss/dollar-variable-empty-line-before": null,
"scss/double-slash-comment-empty-line-before": null,
"scss/load-no-partial-leading-underscore": null,
"scss/no-global-function-names": null
}
}