-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy path.stylelintrc
46 lines (46 loc) · 1.75 KB
/
.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"extends": [
"@wordpress/stylelint-config/scss",
"stylelint-config-recess-order"
],
"customSyntax": "postcss-scss",
"overrides": [
{
"files": ["**/*.scss"],
"customSyntax": "postcss-scss",
"rules": {
"at-rule-empty-line-before": null,
"at-rule-no-unknown": null,
"comment-empty-line-before": null,
"font-weight-notation": null,
"max-line-length": null,
"no-descending-specificity": null,
"rule-empty-line-before": null,
"selector-class-pattern": null,
"value-keyword-case": null,
"scss/operator-no-unspaced": null,
"scss/selector-no-redundant-nesting-selector": null,
"scss/at-import-partial-extension": null,
"scss/no-global-function-names": null,
"scss/comment-no-empty": null,
"scss/at-extend-no-missing-placeholder": null,
"scss/operator-no-newline-after": null,
"scss/at-if-closing-brace-newline-after": null,
"scss/at-else-empty-line-before": null,
"scss/at-if-closing-brace-space-after": null,
"no-invalid-position-at-import-rule": null,
"custom-property-pattern": null,
"indentation": 4,
"number-leading-zero": "never",
"string-quotes": "double",
"length-zero-no-unit": [
true,
{
"ignore": ["custom-properties"],
"ignoreFunctions": ["var", "/^--/"]
}
]
}
}
]
}