-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.stylelintrc
More file actions
26 lines (26 loc) · 893 Bytes
/
.stylelintrc
File metadata and controls
26 lines (26 loc) · 893 Bytes
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
{
"extends": "stylelint-config-standard-scss",
"rules": {
"block-no-empty": true,
"color-no-invalid-hex": true,
"unit-no-unknown": true,
"property-no-unknown": true,
"selector-pseudo-class-no-unknown": true,
"selector-pseudo-element-no-unknown": true,
"no-descending-specificity": null,
"value-keyword-case": null,
"selector-class-pattern": null,
"scss/comment-no-empty": null,
"scss/double-slash-comment-empty-line-before": null,
"rule-empty-line-before": null,
"comment-empty-line-before": null,
"at-rule-empty-line-before": null,
"declaration-empty-line-before": null,
"media-feature-range-notation": "prefix",
"no-duplicate-selectors": null,
"declaration-block-single-line-max-declarations": null,
"selector-id-pattern": null,
"scss/at-mixin-pattern": null,
"scss/dollar-variable-pattern": null
}
}