@taiga-ui/stylelint-config 0.15.0 → 0.17.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 +24 -0
- package/index.json +3 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,30 @@
|
|
|
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.17.0](https://github.com/taiga-family/linters/compare/@taiga-ui/stylelint-config@0.16.0...@taiga-ui/stylelint-config@0.17.0) (2024-02-27)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- **stylelint-config:** ignore css variables keyword case
|
|
11
|
+
([4f8e243](https://github.com/taiga-family/linters/commit/4f8e243fcb666b0e82a4630e2a83d9e260614ab7))
|
|
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
|
+
|
|
18
|
+
# [0.16.0](https://github.com/taiga-family/linters/compare/@taiga-ui/stylelint-config@0.15.0...@taiga-ui/stylelint-config@0.16.0) (2024-02-11)
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
- **stylelint-config:** update rules
|
|
23
|
+
([fc761d2](https://github.com/taiga-family/linters/commit/fc761d2eb07d5b28ff99718a1db7fcc292e3bf31))
|
|
24
|
+
|
|
25
|
+
# Change Log
|
|
26
|
+
|
|
27
|
+
All notable changes to this project will be documented in this file. See
|
|
28
|
+
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
29
|
+
|
|
6
30
|
# [0.15.0](https://github.com/taiga-family/linters/compare/@taiga-ui/stylelint-config@0.14.0...@taiga-ui/stylelint-config@0.15.0) (2024-02-11)
|
|
7
31
|
|
|
8
32
|
### Features
|
package/index.json
CHANGED
|
@@ -38,6 +38,7 @@
|
|
|
38
38
|
"3px",
|
|
39
39
|
"4px",
|
|
40
40
|
"5px",
|
|
41
|
+
"16px",
|
|
41
42
|
"0.1px",
|
|
42
43
|
"0.2px",
|
|
43
44
|
"0.3px",
|
|
@@ -294,7 +295,8 @@
|
|
|
294
295
|
"lower",
|
|
295
296
|
{
|
|
296
297
|
"severity": "error",
|
|
297
|
-
"ignoreKeywords": ["currentColor", "backgroundColor", "optimizeLegibility"]
|
|
298
|
+
"ignoreKeywords": ["currentColor", "backgroundColor", "optimizeLegibility"],
|
|
299
|
+
"ignoreProperties": ["/^--/"]
|
|
298
300
|
}
|
|
299
301
|
],
|
|
300
302
|
"function-url-no-scheme-relative": [
|