This repository has been archived by the owner on Dec 20, 2023. It is now read-only.
forked from Trcmoe/WebDesign-homework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.json
69 lines (69 loc) · 2.17 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"defaultSeverity": "error",
"extends": [
"stylelint-config-standard",
"stylelint-config-rational-order"
],
"plugins": [
"stylelint-order",
"stylelint-config-rational-order/plugin"
],
"rules": {
"at-rule-no-vendor-prefix": true,
"selector-no-vendor-prefix": true,
"property-no-vendor-prefix": true,
"value-no-vendor-prefix": true,
"color-hex-case": "lower",
"color-hex-length": "short",
"color-named": "always-where-possible",
"indentation": "tab",
"length-zero-no-unit": true,
"value-keyword-case": null,
"value-list-comma-newline-after": null,
"max-line-length": null,
"no-eol-whitespace": [true, { "ignore": ["empty-lines"] }],
"no-descending-specificity": null,
"function-url-quotes": "always",
"string-quotes": "double",
"block-opening-brace-space-before": "always",
"block-closing-brace-empty-line-before": "never",
"import-notation": null,
"at-rule-no-unknown": null,
"function-no-unknown": null,
"declaration-empty-line-before": null,
"custom-property-empty-line-before": null,
"selector-pseudo-class-no-unknown": [true, {
"ignorePseudoClasses": ["deep", "global", "export", "vertical", "horizontal", "decrement", "increment", "component", "comp"]
}],
"declaration-block-no-duplicate-properties": true,
"declaration-block-no-duplicate-custom-properties": true,
"font-family-no-duplicate-names": true,
"keyframe-block-no-duplicate-selectors": true,
"custom-property-no-missing-var-function": true,
"keyframe-declaration-no-important": true,
"font-family-no-missing-generic-family-keyword": true,
"font-family-name-quotes": "always-where-recommended",
"comment-empty-line-before": null,
"at-rule-empty-line-before": ["always", {
"except": ["first-nested"],
"ignore": ["after-comment"],
"ignoreAtRules": ["import", "include", "else", "return", "forward", "use"]
}],
"unit-disallowed-list": [
"vw", "vh", "vmin", "vmax",
"cm", "mm", "Q", "in", "pc", "pt", "mozmm"
],
"order/order": [
{
"type": "at-rule",
"name": "include",
"hasBlock": false
},
"dollar-variables",
"custom-properties",
"declarations",
"rules"
],
"order/properties-order": [[], { "severity": "warning" }]
}
}