-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.stylelintrc.json
More file actions
25 lines (25 loc) · 808 Bytes
/
.stylelintrc.json
File metadata and controls
25 lines (25 loc) · 808 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
{
"extends": [
"stylelint-config-standard"
],
"rules": {
"alpha-value-notation": null,
"color-function-alias-notation": null,
"color-function-notation": null,
"color-hex-length": null,
"custom-property-empty-line-before": null,
"declaration-block-single-line-max-declarations": null,
"declaration-empty-line-before": null,
"declaration-property-value-keyword-no-deprecated": null,
"keyframes-name-pattern": null,
"media-feature-range-notation": null,
"no-descending-specificity": null,
"no-duplicate-selectors": null,
"property-no-deprecated": null,
"rule-empty-line-before": null,
"selector-class-pattern": null,
"selector-not-notation": null,
"shorthand-property-no-redundant-values": null,
"value-keyword-case": null
}
}