-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy path.stylelintrc.json
More file actions
39 lines (34 loc) · 1.3 KB
/
.stylelintrc.json
File metadata and controls
39 lines (34 loc) · 1.3 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
39
{
"extends": ["stylelint-config-standard"],
"rules": {
"declaration-no-important": true,
"selector-class-pattern": null,
"keyframes-name-pattern": null,
"selector-pseudo-class-no-unknown": [
true,
{ "ignorePseudoClasses": ["global"] }
],
"declaration-empty-line-before": null,
"rule-empty-line-before": null,
"comment-empty-line-before": null,
"custom-property-empty-line-before": null,
"comment-whitespace-inside": null,
"color-function-notation": null,
"color-function-alias-notation": null,
"alpha-value-notation": null,
"hue-degree-notation": null,
"color-hex-length": null,
"length-zero-no-unit": null,
"shorthand-property-no-redundant-values": null,
"declaration-block-no-redundant-longhand-properties": null,
"block-no-redundant-nested-style-rules": null,
"font-family-name-quotes": null,
"media-feature-range-notation": null,
"selector-pseudo-element-colon-notation": null,
"value-keyword-case": null,
"import-notation": null,
"property-no-vendor-prefix": null,
"property-no-deprecated": null
},
"ignoreFiles": ["**/math-docs/**", "**/dist/**", "**/node_modules/**"]
}