-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.json
40 lines (40 loc) · 1.21 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-use-nesting"
],
"rules": {
"alpha-value-notation": null,
"at-rule-empty-line-before": null,
"at-rule-no-unknown": [true,{
"ignoreAtRules": [
"define-mixin",
"mixin",
"mixin-content"
]
}],
"block-no-empty": null,
"color-function-notation": null,
"color-hex-length": null,
"comment-empty-line-before": null,
"comment-whitespace-inside": null,
"custom-property-empty-line-before": null,
"csstools/use-nesting": "ignore",
"declaration-block-no-duplicate-properties": null,
"declaration-block-no-redundant-longhand-properties": null,
"declaration-empty-line-before": null,
"font-family-name-quotes": null,
"keyframes-name-pattern": null,
"media-feature-name-no-vendor-prefix": null,
"media-feature-range-notation": null,
"number-max-precision": null,
"import-notation": null,
"property-no-vendor-prefix": null,
"rule-empty-line-before": null,
"selector-class-pattern": null,
"selector-id-pattern": null,
"selector-not-notation": null,
"shorthand-property-no-redundant-values": null,
"value-no-vendor-prefix": null
}
}