-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
.stylelintrc.json
46 lines (46 loc) · 1.2 KB
/
.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
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"customSyntax": "sugarss",
"extends": [
"stylelint-config-standard",
"stylelint-config-clean-order"
],
"plugins": [
"stylelint-order"
],
"rules": {
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"import-glob",
"define-mixin",
"mixin"
]
}
],
"block-closing-brace-empty-line-before": null,
"block-closing-brace-newline-after": null,
"block-closing-brace-newline-before": null,
"block-closing-brace-space-before": null,
"block-opening-brace-newline-after": null,
"block-opening-brace-space-after": null,
"block-opening-brace-space-before": null,
"comment-empty-line-before": null,
"comment-whitespace-inside": "always",
"custom-property-pattern": null,
"declaration-block-semicolon-newline-after": null,
"declaration-block-semicolon-space-after": null,
"declaration-block-semicolon-space-before": null,
"declaration-block-trailing-semicolon": null,
"function-no-unknown": null,
"import-notation": null,
"max-line-length": [
120,
{
"ignore": "non-comments"
}
],
"order/properties-order": null,
"string-quotes": "single"
}
}