forked from Automattic/woocommerce-payments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.json
25 lines (25 loc) · 901 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
{
"extends": [ "stylelint-config-wordpress", "stylelint-config-prettier" ],
"rules": {
"at-rule-empty-line-before": null,
"at-rule-no-unknown": null,
"comment-empty-line-before": null,
"declaration-block-no-duplicate-properties": null,
"declaration-colon-newline-after": null,
"declaration-property-unit-whitelist": null,
"font-family-name-quotes": "always-unless-keyword",
"font-family-no-missing-generic-family-keyword": null,
"font-weight-notation": null,
"function-url-quotes": "always",
"max-line-length": null,
"media-feature-parentheses-space-inside": "always",
"no-descending-specificity": null,
"no-duplicate-selectors": null,
"rule-empty-line-before": null,
"selector-class-pattern": null,
"selector-pseudo-class-parentheses-space-inside": "always",
"string-quotes": "single",
"value-keyword-case": null,
"value-list-comma-newline-after": null
}
}