-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.stylelintrc
More file actions
38 lines (38 loc) · 1.29 KB
/
Copy path.stylelintrc
File metadata and controls
38 lines (38 loc) · 1.29 KB
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
30
31
32
33
34
35
36
37
38
{
"extends": [
"stylelint-config-standard",
"stylelint-config-recess-order"
],
"rules": {
"media-feature-range-notation": null,
"rule-empty-line-before": null,
"custom-property-empty-line-before": null,
"color-hex-length": null,
"selector-class-pattern": null,
"selector-id-pattern": null,
"property-no-deprecated": null,
"color-function-alias-notation": null,
"color-function-notation": null,
"alpha-value-notation": null,
"at-rule-no-vendor-prefix": null,
"selector-max-id": 1,
"declaration-no-important": null,
"at-rule-no-unknown": null,
"comment-empty-line-before": null,
"shorthand-property-no-redundant-values": null,
"property-no-vendor-prefix": null,
"selector-pseudo-element-no-unknown": null,
"no-descending-specificity": null,
"length-zero-no-unit": null,
"selector-no-vendor-prefix": null,
"order/properties-order": null,
"declaration-empty-line-before": null,
"value-no-vendor-prefix": null,
"comment-whitespace-inside": null,
"keyframes-name-pattern": null,
"at-rule-empty-line-before": null,
"declaration-property-value-no-unknown": null,
"declaration-block-no-redundant-longhand-properties": null,
"no-duplicate-selectors": [true, { "disallowInList": false }]
}
}