-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc
29 lines (29 loc) · 957 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
28
29
{
"extends": "@zendeskgarden/stylelint-config",
"rules": {
"at-rule-empty-line-before": null,
"at-rule-no-unknown": [true, { "ignoreAtRules": ["apply", "tailwind"] }],
"custom-property-empty-line-before": null,
"custom-property-pattern": "(ck|tw)-.+",
"declaration-block-no-redundant-longhand-properties": null,
"declaration-no-important": null,
"declaration-property-value-no-unknown": [
true,
{
"ignoreProperties": {
"background-image": "/svg-load/",
"background-size": "/theme/",
"content": "/svg-load/",
"transform": "/theme/"
}
}
],
"function-no-unknown": [true, { "ignoreFunctions": ["svg-load", "theme"] }],
"max-nesting-depth": null,
"no-unknown-custom-properties": null,
"selector-max-compound-selectors": null,
"selector-max-specificity": null,
"selector-not-notation": null,
"value-keyword-case": null
}
}