-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.stylelintrc.json
More file actions
24 lines (24 loc) · 880 Bytes
/
.stylelintrc.json
File metadata and controls
24 lines (24 loc) · 880 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
{
"extends": ["stylelint-config-standard", "@dreamsicle.io/stylelint-config-tailwindcss"],
"rules": {
"no-descending-specificity": null,
"no-duplicate-selectors": null,
"selector-class-pattern": null,
"custom-property-pattern": null,
"custom-property-empty-line-before": null,
"rule-empty-line-before": null,
"declaration-empty-line-before": null,
"declaration-block-single-line-max-declarations": null,
"declaration-block-no-duplicate-properties": null,
"comment-empty-line-before": null,
"color-hex-length": null,
"color-function-notation": null,
"color-function-alias-notation": null,
"alpha-value-notation": null,
"media-feature-range-notation": null,
"property-no-vendor-prefix": null,
"property-no-deprecated": null,
"value-keyword-case": null,
"no-invalid-position-at-import-rule": null
}
}