You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+21Lines changed: 21 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,27 @@
5
5
6
6
Формат основан на [Keep a Changelog](https://keepachangelog.com/ru/1.1.0/), и этот проект придерживается [Semantic Versioning](https://semver.org/lang/ru/).
7
7
8
+
## [4.2.0] — 2024–04–02
9
+
- Обновили все зависимости до самых свежих
10
+
- Добавили новые правила:
11
+
-[declaration-block-no-redundant-longhand-properties](https://stylelint.io/user-guide/rules/declaration-block-no-redundant-longhand-properties/), который запрещает избыточные блоки объявлений
12
+
```css
13
+
a {
14
+
padding-top: 1px;
15
+
padding-right: 2px;
16
+
padding-bottom: 3px;
17
+
padding-left: 4px;
18
+
}
19
+
```
20
+
21
+
```css
22
+
a {
23
+
padding: 1px2px3px4px;
24
+
}
25
+
```
26
+
-[no-unknown-custom-properties](https://stylelint.io/user-guide/rules/no-unknown-custom-properties), который запрещает неизвестные кастомные свойства
27
+
28
+
8
29
## [4.1.0] — 2024–02–19
9
30
- Обновили [husky](https://github.com/typicode/husky) до последней версии 9.0.11
10
31
- Обновили [@htmlacademy/editorconfig-cli](https://github.com/htmlacademy/editorconfig-cli) до версии 2.0.9
0 commit comments