@taiga-ui/stylelint-config 0.12.5 → 0.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/index.json +77 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See
|
|
4
4
|
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [0.13.0](https://github.com/taiga-family/linters/compare/@taiga-ui/stylelint-config@0.12.5...@taiga-ui/stylelint-config@0.13.0) (2024-01-29)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- **stylelint-config:** update rules
|
|
11
|
+
([e8e536d](https://github.com/taiga-family/linters/commit/e8e536d40fae56caaf45d7b5fe91afc5c9d14047))
|
|
12
|
+
|
|
13
|
+
# Change Log
|
|
14
|
+
|
|
15
|
+
All notable changes to this project will be documented in this file. See
|
|
16
|
+
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
17
|
+
|
|
6
18
|
## [0.12.5](https://github.com/taiga-family/linters/compare/@taiga-ui/stylelint-config@0.12.4...@taiga-ui/stylelint-config@0.12.5) (2024-01-04)
|
|
7
19
|
|
|
8
20
|
**Note:** Version bump only for package @taiga-ui/stylelint-config
|
package/index.json
CHANGED
|
@@ -6,6 +6,23 @@
|
|
|
6
6
|
"customSyntax": "postcss-less",
|
|
7
7
|
"rules": {
|
|
8
8
|
"selector-max-specificity": null,
|
|
9
|
+
"function-no-unknown": null,
|
|
10
|
+
"no-duplicate-selectors": null,
|
|
11
|
+
"no-descending-specificity": null,
|
|
12
|
+
"no-invalid-position-at-import-rule": null,
|
|
13
|
+
"property-no-vendor-prefix": null,
|
|
14
|
+
"declaration-no-important": null,
|
|
15
|
+
"no-unknown-animations": null,
|
|
16
|
+
"time-min-milliseconds": null,
|
|
17
|
+
"selector-max-type": null,
|
|
18
|
+
"selector-max-id": null,
|
|
19
|
+
"declaration-block-no-redundant-longhand-properties": null,
|
|
20
|
+
"selector-no-qualifying-type": null,
|
|
21
|
+
"media-feature-name-no-vendor-prefix": null,
|
|
22
|
+
"declaration-property-value-disallowed-list": null,
|
|
23
|
+
"custom-property-empty-line-before": null,
|
|
24
|
+
"declaration-empty-line-before": null,
|
|
25
|
+
"font-family-name-quotes": null,
|
|
9
26
|
"alpha-value-notation": "number",
|
|
10
27
|
"color-function-notation": "legacy",
|
|
11
28
|
"meowtec/no-px": [
|
|
@@ -64,6 +81,65 @@
|
|
|
64
81
|
"ignoreTypes": ["/^/deep/"]
|
|
65
82
|
}
|
|
66
83
|
],
|
|
67
|
-
"unit-allowed-list": ["px", "rem", "em", "deg", "s", "ms", "dpcm", "turn", "ch", "%"]
|
|
84
|
+
"unit-allowed-list": ["px", "rem", "em", "deg", "s", "ms", "dpcm", "turn", "ch", "%"],
|
|
85
|
+
"color-no-invalid-hex": [true, {"severity": "error"}],
|
|
86
|
+
"function-calc-no-unspaced-operator": [true, {"severity": "error"}],
|
|
87
|
+
"function-linear-gradient-no-nonstandard-direction": [true, {"severity": "error"}],
|
|
88
|
+
"string-no-newline": [true, {"severity": "error"}],
|
|
89
|
+
"unit-no-unknown": [true, {"severity": "error"}],
|
|
90
|
+
"keyframe-declaration-no-important": [true, {"severity": "error"}],
|
|
91
|
+
"declaration-block-no-duplicate-properties": [
|
|
92
|
+
true,
|
|
93
|
+
{
|
|
94
|
+
"ignore": ["consecutive-duplicates"],
|
|
95
|
+
"severity": "error"
|
|
96
|
+
}
|
|
97
|
+
],
|
|
98
|
+
"declaration-block-no-shorthand-property-overrides": [true, {"severity": "error"}],
|
|
99
|
+
"selector-pseudo-class-no-unknown": [true, {"severity": "error"}],
|
|
100
|
+
"keyframe-block-no-duplicate-selectors": [true, {"severity": "error"}],
|
|
101
|
+
"font-family-no-duplicate-names": [true, {"severity": "error"}],
|
|
102
|
+
"font-family-no-missing-generic-family-keyword": [true, {"severity": "error"}],
|
|
103
|
+
"property-no-unknown": [true, {"severity": "error"}],
|
|
104
|
+
"block-no-empty": [true, {"severity": "error"}],
|
|
105
|
+
"media-feature-name-no-unknown": [true, {"severity": "error"}],
|
|
106
|
+
"at-rule-no-unknown": [true, {"severity": "error"}],
|
|
107
|
+
"comment-no-empty": [true, {"severity": "error"}],
|
|
108
|
+
"no-duplicate-at-import-rules": [true, {"severity": "error"}],
|
|
109
|
+
"no-empty-source": [true, {"severity": "error"}],
|
|
110
|
+
"declaration-block-no-duplicate-custom-properties": [true, {"severity": "error"}],
|
|
111
|
+
"named-grid-areas-no-invalid": [true, {"severity": "error"}],
|
|
112
|
+
"custom-property-no-missing-var-function": [true, {"severity": "error"}],
|
|
113
|
+
"annotation-no-unknown": [true, {"severity": "error"}],
|
|
114
|
+
"at-rule-empty-line-before": [
|
|
115
|
+
"always",
|
|
116
|
+
{
|
|
117
|
+
"except": ["first-nested"],
|
|
118
|
+
"ignore": ["after-comment", "blockless-after-same-name-blockless"],
|
|
119
|
+
"severity": "error"
|
|
120
|
+
}
|
|
121
|
+
],
|
|
122
|
+
"color-hex-length": ["short", {"severity": "error"}],
|
|
123
|
+
"comment-whitespace-inside": ["always", {"severity": "error"}],
|
|
124
|
+
"function-name-case": ["lower", {"severity": "error"}],
|
|
125
|
+
"function-url-quotes": ["always", {"severity": "error"}],
|
|
126
|
+
"length-zero-no-unit": [true, {"ignore": ["custom-properties"], "severity": "error"}],
|
|
127
|
+
"no-irregular-whitespace": [true, {"severity": "error"}],
|
|
128
|
+
"rule-empty-line-before": [
|
|
129
|
+
"always",
|
|
130
|
+
{"except": ["first-nested"], "ignore": ["after-comment"], "severity": "error"}
|
|
131
|
+
],
|
|
132
|
+
"selector-attribute-quotes": ["always", {"severity": "error"}],
|
|
133
|
+
"selector-pseudo-element-colon-notation": ["single", {"severity": "error"}],
|
|
134
|
+
"selector-type-case": ["lower", {"severity": "error"}],
|
|
135
|
+
"value-keyword-case": [
|
|
136
|
+
"lower",
|
|
137
|
+
{"severity": "error", "ignoreKeywords": ["currentColor", "backgroundColor", "optimizeLegibility"]}
|
|
138
|
+
],
|
|
139
|
+
"function-url-no-scheme-relative": [true, {"severity": "warning"}],
|
|
140
|
+
"shorthand-property-no-redundant-values": [true, {"severity": "warning"}],
|
|
141
|
+
"value-no-vendor-prefix": [true, {"severity": "warning"}],
|
|
142
|
+
"selector-no-vendor-prefix": [true, {"severity": "warning"}],
|
|
143
|
+
"at-rule-no-vendor-prefix": [true, {"severity": "warning"}]
|
|
68
144
|
}
|
|
69
145
|
}
|