-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.stylelintrc.json
33 lines (33 loc) · 867 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
28
29
30
31
32
33
{
"extends": "stylelint-config-standard-scss",
"rules": {
"color-hex-length": "short",
"property-no-vendor-prefix": [
true,
{
"ignoreProperties": ["appearance", "text-size-adjust"]
}
],
"declaration-block-single-line-max-declarations": 20,
"at-rule-empty-line-before": [
"always",
{
"except": ["first-nested", "inside-block"],
"ignore": ["after-comment"]
}
],
"comment-empty-line-before": null,
"declaration-empty-line-before": "never",
"rule-empty-line-before": null,
"selector-class-pattern": [
"^(.*)$",
{
"message": "Selector should be written in any format (selector-class-pattern)"
}
],
"declaration-block-no-redundant-longhand-properties": null,
"no-descending-specificity": null,
"scss/at-extend-no-missing-placeholder": null,
"scss/double-slash-comment-empty-line-before": null
}
}