-
Notifications
You must be signed in to change notification settings - Fork 20
/
.stylelintrc.json
40 lines (40 loc) · 1.59 KB
/
.stylelintrc.json
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
39
40
{
"extends": ["stylelint-config-standard"],
"plugins": ["stylelint-csstree-validator"],
"ignoreFiles": ["build/**/*.css", "Sources/**/*.css", "docs/**/*.css"],
"rules": {
"csstree/validator": {
"ignoreProperties": ["text-wrap"]
},
"alpha-value-notation": null,
"at-rule-empty-line-before": null,
"color-function-notation": null,
"color-hex-length": null,
"comment-empty-line-before": null,
"custom-property-empty-line-before": null,
"custom-property-pattern": null,
"declaration-block-no-redundant-longhand-properties": null,
"declaration-empty-line-before": null,
"function-url-quotes": null,
"length-zero-no-unit": null,
"media-feature-range-notation": null,
"no-descending-specificity": null,
"property-no-vendor-prefix": null,
"rule-empty-line-before": null,
"selector-attribute-quotes": null,
"selector-class-pattern": null,
"selector-pseudo-element-colon-notation": null,
"shorthand-property-no-redundant-values": null,
"no-duplicate-selectors": null,
"comment-whitespace-inside": null,
"declaration-block-no-duplicate-properties": null,
"value-keyword-case": null,
"keyframes-name-pattern": null,
"block-no-empty": null,
"selector-id-pattern": null,
"declaration-block-no-shorthand-property-overrides": null,
"font-family-no-missing-generic-family-keyword": null,
"font-family-name-quotes": null,
"value-no-vendor-prefix": null
}
}