-
Notifications
You must be signed in to change notification settings - Fork 341
Expand file tree
/
Copy path.stylelintrc
More file actions
35 lines (35 loc) · 951 Bytes
/
.stylelintrc
File metadata and controls
35 lines (35 loc) · 951 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
27
28
29
30
31
32
33
34
35
{
"extends": [
"@wordpress/stylelint-config",
"stylelint-config-standard-scss"
],
"plugins": [
"stylelint-declaration-strict-value",
"stylelint-order",
"stylelint-scss"
],
"rules": {
"shorthand-property-no-redundant-values": null,
"declaration-empty-line-before": null,
"scss/no-global-function-names": null,
"scss/dollar-variable-empty-line-before": null,
"scss/at-extend-no-missing-placeholder": null,
"scss/dollar-variable-pattern": null,
"color-function-notation": null,
"alpha-value-notation": null,
"rule-empty-line-before": null,
"at-rule-empty-line-before": null,
"at-rule-no-unknown": null,
"declaration-property-unit-allowed-list": null,
"function-url-quotes": "always",
"selector-class-pattern": null,
"order/properties-alphabetical-order": true,
"value-keyword-case": [
"lower",
{
"ignoreKeywords": [ "/([A-Z])/" ]
}
],
"selector-nested-pattern": "^(?!&__|&--|&-|&_).*"
}
}