forked from matrix-org/thirdroom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc
27 lines (27 loc) · 805 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
{
"extends": ["stylelint-config-standard", "stylelint-config-prettier"],
"rules": {
"color-hex-case": null,
"comment-empty-line-before": null,
"declaration-empty-line-before": null,
"length-zero-no-unit": null,
"rule-empty-line-before": null,
"color-hex-length": null,
"max-empty-lines": 1,
"no-eol-whitespace": true,
"number-no-trailing-zeros": null,
"number-leading-zero": null,
"selector-list-comma-newline-after": null,
"at-rule-no-unknown": null,
"no-descending-specificity": null,
"no-empty-first-line": true,
"selector-class-pattern": null,
"custom-property-empty-line-before": null,
"declaration-block-no-redundant-longhand-properties": [
true,
{
"ignoreShorthands": ["grid-template"]
}
]
}
}