-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylelint.config.js
More file actions
executable file
·121 lines (121 loc) · 5.33 KB
/
Copy pathstylelint.config.js
File metadata and controls
executable file
·121 lines (121 loc) · 5.33 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
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/** @type {import('stylelint').Config} */
export default {
extends: ["stylelint-config-standard-scss"],
plugins: ["stylelint-plugin-logical-css", "stylelint-scss"],
rules: {
"at-rule-no-unknown": null,
"scss/at-rule-no-unknown": [true, {
"ignoreAtRules": [
"function",
"mixin",
"include",
"extend",
"use",
"forward",
"return",
"if",
"else",
"for",
"each",
"while",
"warn",
"debug",
"error",
"layer",
"property"
],
"severity": "warning"
}],
"function-no-unknown": null,
"scss/function-no-unknown": [true, {
"ignoreFunctions": [
"color-mix",
"oklch",
"oklab",
"style",
"emoji-to-icon",
"md3-color",
"md3-color-scheme"
],
"severity": "warning"
}],
"keyframes-name-pattern": null,
"at-rule-empty-line-before": ["always", { "severity": "warning", "except": ["first-nested", "blockless-after-blockless"], "ignore": ["after-comment"] }],
"max-nesting-depth": [6, { "severity": "warning" }],
"selector-max-compound-selectors": [6, { "severity": "warning" }],
"scss/comment-no-empty": [true, { "severity": "warning" }],
"color-hex-length": ["short", { "severity": "warning" }],
"selector-type-no-unknown": null,
"block-no-empty": [true, { "severity": "warning" }],
"comment-no-empty": [true, { "severity": "warning" }],
"value-keyword-case": ["lower", { "severity": "warning", "camelCaseSvgKeywords": true }],
"no-descending-specificity": null,
"selector-class-pattern": null,
"custom-property-pattern": null,
"media-feature-range-notation": null,
"declaration-block-no-duplicate-properties": [true, { "severity": "warning" }],
"color-function-notation": ["modern", {"severity": "warning"}],
"alpha-value-notation": ["number", {"severity": "warning"}],
"custom-property-empty-line-before": null,
"declaration-empty-line-before": null,
"unit-allowed-list": [
"em", "rem", "s", "ms", "px", "%",
"dvi", "dvb", "dvh", "dvw", "svh", "svw",
"lvh", "lvw", "cqi", "cqb", "cqw", "cqh",
"deg", "rad", "grad", "turn", "fr",
"hz", "vh", "vw", "vmin", "vmax", "cm", "cqmin", "cqmax", "xl", "xs",
"ch", "pt", "dvmin", "dvmax", "lvmin", "lvmax", "in"
],
"import-notation": null,
"scss/at-mixin-pattern": null,
"declaration-block-no-duplicate-custom-properties": null,
"font-family-no-missing-generic-family-keyword": null,
"declaration-property-value-keyword-no-deprecated": null,
"selector-not-notation": null,
"shorthand-property-no-redundant-values": null,
"scss/dollar-variable-colon-space-before": null,
"media-feature-name-no-unknown": null,
"scss/at-mixin-parentheses-space-before": null,
"scss/at-function-parentheses-space-before": null,
"selector-pseudo-class-no-unknown": null,
"length-zero-no-unit": null,
"block-no-redundant-nested-style-rules": null,
"rule-empty-line-before": null,
"scss/operator-no-newline-after": null,
"comment-empty-line-before": null,
"property-no-deprecated": null,
"comment-whitespace-inside": null,
"scss/double-slash-comment-empty-line-before": null,
"property-no-vendor-prefix": null,
"nesting-selector-no-missing-scoping-root": null,
"no-invalid-position-declaration": null,
"scss/at-extend-no-missing-placeholder": null,
"scss/selector-no-redundant-nesting-selector": null,
"scss/selector-no-union-class-name": null,
"scss/no-global-function-names": null,
"scss/dollar-variable-pattern": null,
"scss/dollar-variable-empty-line-before": null,
"scss/at-function-pattern": null,
"scss/at-if-no-null": null,
"scss/operator-no-unspaced": null,
"syntax-string-no-invalid": null,
"font-family-name-quotes": null,
"lightness-notation": null,
"hue-degree-notation": null,
"color-function-alias-notation": null,
"declaration-block-single-line-max-declarations": null,
"scss/at-mixin-argumentless-call-parentheses": null,
"scss/double-slash-comment-whitespace-inside": null,
"declaration-block-no-redundant-longhand-properties": null,
"scss/at-rule-conditional-no-parentheses": null,
"scss/dollar-variable-colon-space-after": null,
"scss/at-if-closing-brace-newline-after": null,
"scss/at-if-closing-brace-space-after": null,
"scss/at-else-empty-line-before": null,
"scss/at-else-closing-brace-newline-after": null,
"scss/at-else-closing-brace-space-after": null,
"logical-css/require-logical-properties": [true, {"severity": "warning"}],
"logical-css/require-logical-units": [true, {"severity": "warning"}],
"logical-css/require-logical-keywords": [true, {"severity": "warning"}]
}
}