forked from LibreBooking/librebooking
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.stylelintrc.json
More file actions
27 lines (27 loc) · 996 Bytes
/
.stylelintrc.json
File metadata and controls
27 lines (27 loc) · 996 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
{
"extends": ["stylelint-config-standard"],
"rules": {
"no-descending-specificity": null,
"no-duplicate-selectors": null,
"selector-class-pattern": null,
"selector-id-pattern": null,
"selector-pseudo-element-colon-notation": null,
"selector-attribute-quotes": null,
"custom-property-pattern": null,
"custom-property-empty-line-before": null,
"color-function-notation": null,
"color-hex-length": null,
"alpha-value-notation": null,
"value-no-vendor-prefix": null,
"property-no-vendor-prefix": null,
"length-zero-no-unit": null,
"font-family-name-quotes": null,
"font-family-no-missing-generic-family-keyword": null,
"declaration-empty-line-before": null,
"declaration-block-no-redundant-longhand-properties": null,
"declaration-block-no-shorthand-property-overrides": null,
"declaration-block-single-line-max-declarations": null,
"rule-empty-line-before": null,
"media-feature-range-notation": null
}
}