arui-presets-lint 9.3.0 → 9.4.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 +596 -0
- package/cli/index.d.mts +2 -0
- package/cli/index.mjs +12 -17
- package/commitlint/index.d.ts +9 -0
- package/eslint/{config.ts → config.d.ts} +0 -1
- package/eslint/config.js +2 -0
- package/eslint/index.d.ts +4 -0
- package/eslint/{index.ts → index.js} +7 -23
- package/eslint/plugins/disable-comments/config/config.d.ts +6 -0
- package/eslint/plugins/disable-comments/config/{config.ts → config.js} +3 -5
- package/eslint/plugins/disable-comments/config/index.d.ts +2 -0
- package/eslint/plugins/disable-comments/config/index.js +2 -0
- package/eslint/plugins/disable-comments/config/plugin.d.ts +6 -0
- package/eslint/plugins/disable-comments/config/{plugin.ts → plugin.js} +3 -5
- package/eslint/plugins/disable-comments/constants/index.d.ts +26 -0
- package/eslint/plugins/disable-comments/constants/{index.ts → index.js} +6 -16
- package/eslint/plugins/disable-comments/{index.ts → index.d.ts} +1 -1
- package/eslint/plugins/{index.ts → disable-comments/index.js} +1 -1
- package/eslint/plugins/disable-comments/rule/index.d.ts +3 -0
- package/eslint/plugins/disable-comments/rule/{index.ts → index.js} +5 -10
- package/eslint/plugins/disable-comments/types/{index.ts → index.d.ts} +1 -4
- package/eslint/plugins/disable-comments/types/index.js +1 -0
- package/eslint/plugins/disable-comments/utils/build-suggestions.d.ts +5 -0
- package/eslint/plugins/disable-comments/utils/{build-suggestions.ts → build-suggestions.js} +4 -7
- package/eslint/plugins/disable-comments/utils/comment-parser.d.ts +7 -0
- package/eslint/plugins/disable-comments/utils/comment-parser.js +79 -0
- package/eslint/plugins/disable-comments/utils/comment-validator.d.ts +13 -0
- package/eslint/plugins/disable-comments/utils/{comment-validator.ts → comment-validator.js} +13 -45
- package/eslint/plugins/disable-comments/utils/fixers.d.ts +3 -0
- package/eslint/plugins/disable-comments/utils/{fixers.ts → fixers.js} +9 -37
- package/eslint/plugins/disable-comments/utils/index.d.ts +4 -0
- package/eslint/plugins/disable-comments/utils/index.js +4 -0
- package/eslint/plugins/index.d.ts +1 -0
- package/eslint/plugins/index.js +1 -0
- package/eslint/rules/best-practices.d.ts +2 -0
- package/eslint/rules/{best-practices.ts → best-practices.js} +7 -125
- package/eslint/rules/imports.d.ts +2 -0
- package/eslint/rules/{imports.ts → imports.js} +12 -60
- package/eslint/rules/index.d.ts +8 -0
- package/eslint/rules/index.js +8 -0
- package/eslint/rules/node.d.ts +2 -0
- package/eslint/rules/{node.ts → node.js} +2 -12
- package/eslint/rules/react-a11y.d.ts +2 -0
- package/eslint/rules/{react-a11y.ts → react-a11y.js} +2 -37
- package/eslint/rules/react.d.ts +2 -0
- package/eslint/rules/{react.ts → react.js} +3 -92
- package/eslint/rules/tests.d.ts +2 -0
- package/eslint/rules/{tests.ts → tests.js} +2 -3
- package/eslint/rules/typescript.d.ts +2 -0
- package/eslint/rules/{typescript.ts → typescript.js} +14 -60
- package/eslint/rules/variables.d.ts +2 -0
- package/eslint/rules/{variables.ts → variables.js} +4 -18
- package/eslint/rules.d.ts +1 -0
- package/eslint/rules.js +1 -0
- package/package.json +47 -28
- package/prettier/index.d.ts +9 -0
- package/stylelint/index.d.ts +67 -0
- package/stylelint/index.js +1 -33
- package/.changeset/README.md +0 -8
- package/.changeset/config.json +0 -15
- package/CODEOWNERS +0 -1
- package/CONTRIBUTING.md +0 -53
- package/V9_MIGRATION_GUIDE.md +0 -87
- package/eslint/plugins/disable-comments/config/index.ts +0 -2
- package/eslint/plugins/disable-comments/utils/comment-parser.ts +0 -121
- package/eslint/plugins/disable-comments/utils/index.ts +0 -10
- package/eslint/rules/index.ts +0 -8
- package/eslint.config.mts +0 -17
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,596 @@
|
|
|
1
|
+
## 9.4.0
|
|
2
|
+
|
|
3
|
+
### Minor Changes
|
|
4
|
+
|
|
5
|
+
- [#108](https://github.com/core-ds/arui-presets-lint/pull/108) [`9234cb2`](https://github.com/core-ds/arui-presets-lint/commit/9234cb201c0bc731a7243b0495757c237539f8cd) Thanks [@kiskv](https://github.com/kiskv)! - - Обновлены зависимости
|
|
6
|
+
- Включена сборка библиотеки через tsc
|
|
7
|
+
|
|
8
|
+
## 9.3.0
|
|
9
|
+
|
|
10
|
+
### Minor Changes
|
|
11
|
+
|
|
12
|
+
- [#113](https://github.com/core-ds/arui-presets-lint/pull/113) [`594d69d`](https://github.com/core-ds/arui-presets-lint/commit/594d69defacfc485d10b23fc0e7c9e586e24149e) Thanks [@KalashnikovTV](https://github.com/KalashnikovTV)! - ## New Features
|
|
13
|
+
- Добавлено правило **`require-description`**, которое требует указания причины отключения ESLint‑директив. Более подробное описание можно прочитать по пути eslint/plugins/disable-comments/README.md
|
|
14
|
+
|
|
15
|
+
## 9.2.0
|
|
16
|
+
|
|
17
|
+
### Minor Changes
|
|
18
|
+
|
|
19
|
+
- [#92](https://github.com/core-ds/arui-presets-lint/pull/92) [`63ab032`](https://github.com/core-ds/arui-presets-lint/commit/63ab032d7576e209765b235a895c9a088d9f366a) Thanks [@kiskv](https://github.com/kiskv)! - Обновлены зависимости, добавлен eslint-plugin-de-morgan
|
|
20
|
+
|
|
21
|
+
## 9.0.2
|
|
22
|
+
|
|
23
|
+
## 9.1.4
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- [#100](https://github.com/core-ds/arui-presets-lint/pull/100) [`5b14c91`](https://github.com/core-ds/arui-presets-lint/commit/5b14c91440f3dbf2a4cabbdf1d6130b47ec7a938) Thanks [@kiskv](https://github.com/kiskv)! - Правила nodejs теперь применяются только для папки server
|
|
28
|
+
|
|
29
|
+
## 9.1.3
|
|
30
|
+
|
|
31
|
+
### Patch Changes
|
|
32
|
+
|
|
33
|
+
- [#97](https://github.com/core-ds/arui-presets-lint/pull/97) [`b8ccf19`](https://github.com/core-ds/arui-presets-lint/commit/b8ccf19c174645261aee0adadce192051420a788) Thanks [@heymdall-legal](https://github.com/heymdall-legal)! - Исправлена проблема, из-за которой cli мог вызывать некорректные версии инструментов если в дереве зависимостей проекта присутствовали разные версии prettier/eslint/stylelint
|
|
34
|
+
|
|
35
|
+
## 9.1.2
|
|
36
|
+
|
|
37
|
+
### Patch Changes
|
|
38
|
+
|
|
39
|
+
- [#94](https://github.com/core-ds/arui-presets-lint/pull/94) [`ca6ab3e`](https://github.com/core-ds/arui-presets-lint/commit/ca6ab3e05039e66b64ddb5d378f6895f7ece2bd5) Thanks [@ValadzkoAliaksei](https://github.com/ValadzkoAliaksei)! - Выключено свойство requireReturnForObjectLiteral для правила eslint arrow-body-style
|
|
40
|
+
|
|
41
|
+
## 9.1.1
|
|
42
|
+
|
|
43
|
+
### Patch Changes
|
|
44
|
+
|
|
45
|
+
- [#88](https://github.com/core-ds/arui-presets-lint/pull/88) [`874438f`](https://github.com/core-ds/arui-presets-lint/commit/874438fb01604ed3f992b640bbb5118cfb4f657a) Thanks [@kiskv](https://github.com/kiskv)! - - Исправлена проверка названий css-файлов
|
|
46
|
+
- Исправлены типы наборов правил eslint
|
|
47
|
+
|
|
48
|
+
## 9.1.0
|
|
49
|
+
|
|
50
|
+
### Minor Changes
|
|
51
|
+
|
|
52
|
+
- [#80](https://github.com/core-ds/arui-presets-lint/pull/80) [`c9ccabf`](https://github.com/core-ds/arui-presets-lint/commit/c9ccabf609cd672a5d66aab996e323d647aef759) Thanks [@dmitrbrvsk](https://github.com/dmitrbrvsk)! - добавлены новые правила для stylelint
|
|
53
|
+
|
|
54
|
+
- [#84](https://github.com/core-ds/arui-presets-lint/pull/84) [`4ae8751`](https://github.com/core-ds/arui-presets-lint/commit/4ae875136c721e6893a4efbc061d0497c763b5b6) Thanks [@kiskv](https://github.com/kiskv)! - - Исправлены пути в экспортах правил eslint
|
|
55
|
+
- Удалены сломанные deprecated stylelint правила
|
|
56
|
+
- Добавлен прогон тестов для всех веток
|
|
57
|
+
- Поднят lefthook до 2.1.1, typescript-eslint до 8.55.0, eslint-plugin-unicorn до 63.0.0
|
|
58
|
+
- Убрана дефолтная настройка allowDefaultProject, дополнен README.md и V9_MIGRATION_GUIDE.md по этой теме
|
|
59
|
+
|
|
60
|
+
### Patch Changes
|
|
61
|
+
|
|
62
|
+
- [#82](https://github.com/core-ds/arui-presets-lint/pull/82) [`76c10fe`](https://github.com/core-ds/arui-presets-lint/commit/76c10fe13a175ea89b664c2b727009cfa1638ddf) Thanks [@heymdall-legal](https://github.com/heymdall-legal)! - Выключено правило no-continue
|
|
63
|
+
|
|
64
|
+
## 9.0.1
|
|
65
|
+
|
|
66
|
+
### Major Changes
|
|
67
|
+
|
|
68
|
+
- [#53](https://github.com/core-ds/arui-presets-lint/pull/53) [`909ac7d`](https://github.com/core-ds/arui-presets-lint/commit/909ac7d696a0ef2d56993688878e738dbad193db) Thanks [@kiskv](https://github.com/kiskv)! - ESlint 9, ESM only и многое другое...
|
|
69
|
+
|
|
70
|
+
## Breaking Changes
|
|
71
|
+
- конфиги поставляются только в esm, минимальная версия node - 18.18.0
|
|
72
|
+
- удален плагин [eslint-plugin-cypress](https://www.npmjs.com/package/eslint-plugin-cypress) и сопутствующие правила
|
|
73
|
+
- [eslint-plugin-import](https://www.npmjs.com/package/eslint-plugin-import) заменен на [eslint-plugin-import-x](https://www.npmjs.com/package/eslint-plugin-import-x)
|
|
74
|
+
- [eslint-plugin-dirnames](https://www.npmjs.com/package/eslint-plugin-dirnames) заменен на [eslint-plugin-check-file](https://www.npmjs.com/package/eslint-plugin-check-file)
|
|
75
|
+
- содержимое конфигов [eslint-config-airbnb](https://www.npmjs.com/package/eslint-config-airbnb), [eslint-config-airbnb-typescript](https://www.npmjs.com/package/eslint-config-airbnb-typescript), [eslint-config-airbnb-base](https://www.npmjs.com/package/eslint-config-airbnb-base) переведено в eslint-flat-config и перенесено внутрь нашей библиотеки
|
|
76
|
+
- отключен eslint cache, так как он периодически вызывал проблемы и работал [ненадежно](https://typescript-eslint.io/troubleshooting/faqs/eslint/#can-i-use-eslints---cache-with-typescript-eslint)
|
|
77
|
+
- typescript-eslint обновлен до 8 версии, включен новый [projectService](https://typescript-eslint.io/blog/project-service/#introducing-the-project-service)
|
|
78
|
+
- в eslint для окружения node включен eslint-plugin-n с набором правил [recommended](https://github.com/eslint-community/eslint-plugin-n?tab=readme-ov-file#-rules)
|
|
79
|
+
|
|
80
|
+
## New Features
|
|
81
|
+
- добавлен набор правил [eslint-plugin-unicorn-unopinionated](https://github.com/sindresorhus/eslint-plugin-unicorn/tree/main?tab=readme-ov-file#rules)
|
|
82
|
+
- добавлен набор правил [eslint-plugin-jsx-a11y-recommended](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y?tab=readme-ov-file#supported-rules)
|
|
83
|
+
- добавлены наборы правил [eslint-plugin-react-recommended](https://github.com/jsx-eslint/eslint-plugin-react?tab=readme-ov-file#list-of-supported-rules) и eslint-plugin-react-hooks-recommended. исправляет [этот баг](https://github.com/core-ds/arui-presets-lint/issues/50)
|
|
84
|
+
- добавлен набор правил [typescript-eslint-recommended-type-checked](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/src/configs/eslintrc/recommended-type-checked.ts)
|
|
85
|
+
- добавлен набор правил [eslint-recommended](https://github.com/eslint/eslint/blob/main/packages/js/src/configs/eslint-recommended.js)
|
|
86
|
+
- экспорты объявлены через декларацию [exports](https://nodejs.org/api/packages.html#package-entry-points) в package.json
|
|
87
|
+
- пути файлов удалены из вызова cli eslint - теперь все определяется в конфиге. добавлена библиотека [eslint-config-flat-gitignore](https://www.npmjs.com/package/eslint-config-flat-gitignore) для поддержки учитывания файлов .gitignore и .eslintignore
|
|
88
|
+
- обновлены зависимости и yarn до последней версии
|
|
89
|
+
- флоу выпуска библиотеки переведен с conventional-cli на changesets-cli
|
|
90
|
+
|
|
91
|
+
## Bugfixes
|
|
92
|
+
- Исправлено отображение ворнингов на precommit при наличии файла в eslintignore https://github.com/core-ds/arui-presets-lint/issues/28
|
|
93
|
+
|
|
94
|
+
# [8.8.1](https://github.com/core-ds/arui-presets-lint/compare/v8.8.0...v8.8.1) (2025-08-25)
|
|
95
|
+
|
|
96
|
+
### Bug Fixes
|
|
97
|
+
|
|
98
|
+
- **a11y:** кнопки из core-components добавлены в настройки a11y ([a58d229](https://github.com/core-ds/arui-presets-lint/commit/a58d2297523d09e899ac49b1638bb2313a20325a))
|
|
99
|
+
|
|
100
|
+
# [8.8.0](https://github.com/core-ds/arui-presets-lint/compare/v8.7.0...v8.8.0) (2025-06-24)
|
|
101
|
+
|
|
102
|
+
### Features
|
|
103
|
+
|
|
104
|
+
- update jsx-filename-extension rule ([0b66b5a](https://github.com/core-ds/arui-presets-lint/commit/0b66b5a24d8a6109932deb1039f5fabd567302e8))
|
|
105
|
+
|
|
106
|
+
# [8.7.0](https://github.com/core-ds/arui-presets-lint/compare/v8.6.0...v8.7.0) (2025-04-17)
|
|
107
|
+
|
|
108
|
+
### Bug Fixes
|
|
109
|
+
|
|
110
|
+
- **eslint:** set --ignore-path to .gitignore ([32b57e5](https://github.com/core-ds/arui-presets-lint/commit/32b57e5a798d20270287b5803a44dc24b5be5dd9))
|
|
111
|
+
- **lefthook:** add --allow-empty-input to stylelint call ([f8281b6](https://github.com/core-ds/arui-presets-lint/commit/f8281b6622328d7c29e376763af8fafd0432b1a1))
|
|
112
|
+
|
|
113
|
+
### Features
|
|
114
|
+
|
|
115
|
+
- upgrade dependencies ([7a9465d](https://github.com/core-ds/arui-presets-lint/commit/7a9465d86b7c3bf6fa1ffe27eadbb8cde7154556))
|
|
116
|
+
|
|
117
|
+
# [8.6.0](https://github.com/core-ds/arui-presets-lint/compare/v8.5.0...v8.6.0) (2025-02-12)
|
|
118
|
+
|
|
119
|
+
### Features
|
|
120
|
+
|
|
121
|
+
- add new rules for eslint ([8f75cb8](https://github.com/core-ds/arui-presets-lint/commit/8f75cb89e0b5b7ab428378807eb9613c97ba6209))
|
|
122
|
+
|
|
123
|
+
# [8.5.0](https://github.com/core-ds/arui-presets-lint/compare/v8.4.0...v8.5.0) (2025-01-31)
|
|
124
|
+
|
|
125
|
+
### Features
|
|
126
|
+
|
|
127
|
+
- add new rules for eslint max-params and max-lines ([e2d4f6a](https://github.com/core-ds/arui-presets-lint/commit/e2d4f6a9acb6a370c0b3f3341288deb3275de18d))
|
|
128
|
+
|
|
129
|
+
# [8.4.0](https://github.com/core-ds/arui-presets-lint/compare/v8.3.0...v8.4.0) (2025-01-13)
|
|
130
|
+
|
|
131
|
+
### Features
|
|
132
|
+
|
|
133
|
+
- added new ts rule ([b66a2dd](https://github.com/core-ds/arui-presets-lint/commit/b66a2ddb123afbdfcc84371f023643f3ee795d46))
|
|
134
|
+
|
|
135
|
+
# [8.3.0](https://github.com/core-ds/arui-presets-lint/compare/v8.2.0...v8.3.0) (2024-12-13)
|
|
136
|
+
|
|
137
|
+
### Features
|
|
138
|
+
|
|
139
|
+
- **stylelint:** add ability to use pseudo class global ([5d220df](https://github.com/core-ds/arui-presets-lint/commit/5d220df9abf47eb8c37ae05d6f8fa0075789d473))
|
|
140
|
+
|
|
141
|
+
# [8.2.0](https://github.com/core-ds/arui-presets-lint/compare/v8.1.0...v8.2.0) (2024-12-02)
|
|
142
|
+
|
|
143
|
+
### Features
|
|
144
|
+
|
|
145
|
+
- bump dependencies, add stylelint-core-vars with bugfixes ([6d36d0a](https://github.com/core-ds/arui-presets-lint/commit/6d36d0a980feaad68146a1f7a50cf2ea7a1c1ad0))
|
|
146
|
+
- **lefthook:** remove unused parallel setting from commit-msg hook ([e8acd61](https://github.com/core-ds/arui-presets-lint/commit/e8acd616013e7a2891fd8614858e861be7e67214))
|
|
147
|
+
|
|
148
|
+
# [8.1.0](https://github.com/core-ds/arui-presets-lint/compare/v8.0.1...v8.1.0) (2024-11-01)
|
|
149
|
+
|
|
150
|
+
### Bug Fixes
|
|
151
|
+
|
|
152
|
+
- **prettier:** fix prettier newlines on windows ([0120a00](https://github.com/core-ds/arui-presets-lint/commit/0120a0062a54a73022d89ea036216bc869a4070d))
|
|
153
|
+
|
|
154
|
+
### Features
|
|
155
|
+
|
|
156
|
+
- bump dependencies ([5c51205](https://github.com/core-ds/arui-presets-lint/commit/5c51205e9af81b706e34ad5bced36d7ec5d46b78))
|
|
157
|
+
- **cli:** add --list-different flag for format command ([2a845a7](https://github.com/core-ds/arui-presets-lint/commit/2a845a7579d9f0d0bcf490411839de6d67037652))
|
|
158
|
+
|
|
159
|
+
## [8.0.1](https://github.com/core-ds/arui-presets-lint/compare/v8.0.0...v8.0.1) (2024-10-31)
|
|
160
|
+
|
|
161
|
+
### Bug Fixes
|
|
162
|
+
|
|
163
|
+
- fix grammatical mistakes ([1819ba1](https://github.com/core-ds/arui-presets-lint/commit/1819ba11ae593f2072a98e00fd2425ce231298a4))
|
|
164
|
+
|
|
165
|
+
# [8.0.0](https://github.com/core-ds/arui-presets-lint/compare/v7.6.2...v8.0.0) (2024-10-29)
|
|
166
|
+
|
|
167
|
+
- feat(\*)!: remove all peerdeps ([2ac2d86](https://github.com/core-ds/arui-presets-lint/commit/2ac2d8697ed4a68dd10cc425af16cf2732948083))
|
|
168
|
+
|
|
169
|
+
### Features
|
|
170
|
+
|
|
171
|
+
- add lefthook and cli, remove simple-git-hooks and lint-staged ([d83b53b](https://github.com/core-ds/arui-presets-lint/commit/d83b53b47e0fb27958aea7ada1ada83f7a01b26c))
|
|
172
|
+
- bump react, typescript and core-components in dev dependency ([162f66f](https://github.com/core-ds/arui-presets-lint/commit/162f66f05109653d37d57275ea8b1728e9d7cebb))
|
|
173
|
+
- update yarn to 4.5.1 ([250b8ae](https://github.com/core-ds/arui-presets-lint/commit/250b8aee2a46c1ecd0ff11524a85653971c41d64))
|
|
174
|
+
|
|
175
|
+
### BREAKING CHANGES
|
|
176
|
+
|
|
177
|
+
- peer dependencies no longer supported
|
|
178
|
+
|
|
179
|
+
## [7.6.2](https://github.com/core-ds/arui-presets-lint/compare/v7.6.1...v7.6.2) (2024-09-18)
|
|
180
|
+
|
|
181
|
+
### Bug Fixes
|
|
182
|
+
|
|
183
|
+
- **eslint:** optimize regex for mixed language rule ([7f021cb](https://github.com/core-ds/arui-presets-lint/commit/7f021cbd02bc69db9d28f68405edcdbd29abe850))
|
|
184
|
+
|
|
185
|
+
## [7.6.1](https://github.com/core-ds/arui-presets-lint/compare/v7.6.0...v7.6.1) (2024-09-08)
|
|
186
|
+
|
|
187
|
+
### Bug Fixes
|
|
188
|
+
|
|
189
|
+
- **stylelint:** allow duplicate properties with different syntaxes ([3e0e5af](https://github.com/core-ds/arui-presets-lint/commit/3e0e5af57c0d470ae3de7052078bb3ca6e67a309))
|
|
190
|
+
|
|
191
|
+
# [7.6.0](https://github.com/core-ds/arui-presets-lint/compare/v7.5.0...v7.6.0) (2024-08-19)
|
|
192
|
+
|
|
193
|
+
### Bug Fixes
|
|
194
|
+
|
|
195
|
+
- **stylelint:** rule for module only; ([1a73b15](https://github.com/core-ds/arui-presets-lint/commit/1a73b151ff0931cc2e0a3b7c806280f63edcbd9b))
|
|
196
|
+
|
|
197
|
+
### Features
|
|
198
|
+
|
|
199
|
+
- **stylelint:** add rule; selector-class-pattern ([26e3c55](https://github.com/core-ds/arui-presets-lint/commit/26e3c551a1ce68946bf6a6ffbf119c69d64e81b0))
|
|
200
|
+
|
|
201
|
+
# [7.5.0](https://github.com/core-ds/arui-presets-lint/compare/v7.4.0...v7.5.0) (2024-08-16)
|
|
202
|
+
|
|
203
|
+
### Features
|
|
204
|
+
|
|
205
|
+
- **stylelint:** add stylelint duplications check ([cb95219](https://github.com/core-ds/arui-presets-lint/commit/cb9521959675c4fb5391cfa16811c134e092b95b))
|
|
206
|
+
|
|
207
|
+
# [7.4.0](https://github.com/core-ds/arui-presets-lint/compare/v7.3.0...v7.4.0) (2024-08-14)
|
|
208
|
+
|
|
209
|
+
### Features
|
|
210
|
+
|
|
211
|
+
- **eslint:** enabled consistent-type-imports, ban propsWithChildren and atomic lodash ([3b03627](https://github.com/core-ds/arui-presets-lint/commit/3b036274d8535840ce47083495fe90d30ef86d8a))
|
|
212
|
+
|
|
213
|
+
# [7.3.0](https://github.com/core-ds/arui-presets-lint/compare/v7.2.0...v7.3.0) (2024-04-24)
|
|
214
|
+
|
|
215
|
+
### Features
|
|
216
|
+
|
|
217
|
+
- **no-cycle:** enable rule ([861aa71](https://github.com/core-ds/arui-presets-lint/commit/861aa71ae2b3b804489905c2a15e0619afbb5da3))
|
|
218
|
+
|
|
219
|
+
# [7.2.0](https://github.com/core-ds/arui-presets-lint/compare/v7.1.1...v7.2.0) (2024-04-10)
|
|
220
|
+
|
|
221
|
+
### Features
|
|
222
|
+
|
|
223
|
+
- allow 7 version for typescript-eslint in peerdeps ([8f9c0cc](https://github.com/core-ds/arui-presets-lint/commit/8f9c0cca96c4e0771bb529747adeee54d65e3b7b))
|
|
224
|
+
- bump dependencies ([0c86c4e](https://github.com/core-ds/arui-presets-lint/commit/0c86c4e79b9632114b10435fa77cd4fd81bd8b93))
|
|
225
|
+
- bump yarn to 4.1.1 ([2f720c3](https://github.com/core-ds/arui-presets-lint/commit/2f720c3da0534c7ddfea95738ac1cf2bbe02ba7d))
|
|
226
|
+
- **eslint:** set ecma version to 2022 for ts parser ([9ed55d6](https://github.com/core-ds/arui-presets-lint/commit/9ed55d6617b09d0cbb786758de8b4857c8cbac89))
|
|
227
|
+
- replace husky 4 to simple-git-hooks ([91232d8](https://github.com/core-ds/arui-presets-lint/commit/91232d8d9c94733b8d474eef09138c9dd6e76363))
|
|
228
|
+
|
|
229
|
+
## [7.1.1](https://github.com/core-ds/arui-presets-lint/compare/v7.1.0...v7.1.1) (2024-02-28)
|
|
230
|
+
|
|
231
|
+
### Bug Fixes
|
|
232
|
+
|
|
233
|
+
- **commitlint:** downgrade for fix RangeError commitlint issue ([6ef2bfa](https://github.com/core-ds/arui-presets-lint/commit/6ef2bfa41aa0bc6290f8dfbe17a2a0abecc45595))
|
|
234
|
+
|
|
235
|
+
# [7.1.0](https://github.com/core-ds/arui-presets-lint/compare/v7.0.1...v7.1.0) (2024-02-27)
|
|
236
|
+
|
|
237
|
+
### Features
|
|
238
|
+
|
|
239
|
+
- bump various dependencies ([4184a5d](https://github.com/core-ds/arui-presets-lint/commit/4184a5d4b1b4a574564972fbddbdd1db1452ce19))
|
|
240
|
+
|
|
241
|
+
## [7.0.1](https://github.com/core-ds/arui-presets-lint/compare/v7.0.0...v7.0.1) (2024-01-27)
|
|
242
|
+
|
|
243
|
+
### Bug Fixes
|
|
244
|
+
|
|
245
|
+
- **ci:** fix new library package job for protected branches ([#4](https://github.com/core-ds/arui-presets-lint/issues/4)) ([f27fce0](https://github.com/core-ds/arui-presets-lint/commit/f27fce011c336cc1b6b8582e8350fb8e2c08b2ca))
|
|
246
|
+
|
|
247
|
+
# [7.0.0](https://github.com/core-ds/arui-presets-lint/compare/v6.3.0...v7.0.0) (2023-12-22)
|
|
248
|
+
|
|
249
|
+
- feat(\*)!: remove arui-feather dependencies, fix test runner ([fde224c](https://github.com/core-ds/arui-presets-lint/commit/fde224c2eecfcfa09aad305b878bcbe418c44e96))
|
|
250
|
+
- feat(\*)!: bump dependencies ([aa78faa](https://github.com/core-ds/arui-presets-lint/commit/aa78faab6be218592665cbffe1b0b46122eceb48))
|
|
251
|
+
|
|
252
|
+
### Features
|
|
253
|
+
|
|
254
|
+
- add release config for beta branch ([50025ca](https://github.com/core-ds/arui-presets-lint/commit/50025ca3f5b58f0cf1e5aa77ea13e052e08047ad))
|
|
255
|
+
- bump dependencies ([b90a40c](https://github.com/core-ds/arui-presets-lint/commit/b90a40cd2dbc6b1471055cd3b4b724f20ed7460e))
|
|
256
|
+
- bump stylelint to 16 ([4ca3432](https://github.com/core-ds/arui-presets-lint/commit/4ca3432e353b4f42b869242216489d5ffaf33b69))
|
|
257
|
+
- bump yarn ([315c6ef](https://github.com/core-ds/arui-presets-lint/commit/315c6efdb326ac812a99b110427fca781e685d93))
|
|
258
|
+
- cleanup package content ([e12e8c7](https://github.com/core-ds/arui-presets-lint/commit/e12e8c760f8f4ea5b300508d50eba1fa5af199d5))
|
|
259
|
+
- modify tests ([49f9c06](https://github.com/core-ds/arui-presets-lint/commit/49f9c06be2ba5cdbde27ee4226a86834fd573fb5))
|
|
260
|
+
|
|
261
|
+
### BREAKING CHANGES
|
|
262
|
+
|
|
263
|
+
- remove arui-feather support
|
|
264
|
+
- remove support for node <18
|
|
265
|
+
|
|
266
|
+
# [7.0.0](https://github.com/core-ds/arui-presets-lint/compare/v6.3.0...v7.0.0) (2023-12-22)
|
|
267
|
+
|
|
268
|
+
- feat(\*)!: remove arui-feather dependencies, fix test runner ([fde224c](https://github.com/core-ds/arui-presets-lint/commit/fde224c2eecfcfa09aad305b878bcbe418c44e96))
|
|
269
|
+
- feat(\*)!: bump dependencies ([aa78faa](https://github.com/core-ds/arui-presets-lint/commit/aa78faab6be218592665cbffe1b0b46122eceb48))
|
|
270
|
+
|
|
271
|
+
### Features
|
|
272
|
+
|
|
273
|
+
- add release config for beta branch ([50025ca](https://github.com/core-ds/arui-presets-lint/commit/50025ca3f5b58f0cf1e5aa77ea13e052e08047ad))
|
|
274
|
+
- bump dependencies ([b90a40c](https://github.com/core-ds/arui-presets-lint/commit/b90a40cd2dbc6b1471055cd3b4b724f20ed7460e))
|
|
275
|
+
- bump stylelint to 16 ([4ca3432](https://github.com/core-ds/arui-presets-lint/commit/4ca3432e353b4f42b869242216489d5ffaf33b69))
|
|
276
|
+
- bump yarn ([315c6ef](https://github.com/core-ds/arui-presets-lint/commit/315c6efdb326ac812a99b110427fca781e685d93))
|
|
277
|
+
- cleanup package content ([e12e8c7](https://github.com/core-ds/arui-presets-lint/commit/e12e8c760f8f4ea5b300508d50eba1fa5af199d5))
|
|
278
|
+
- modify tests ([49f9c06](https://github.com/core-ds/arui-presets-lint/commit/49f9c06be2ba5cdbde27ee4226a86834fd573fb5))
|
|
279
|
+
|
|
280
|
+
### BREAKING CHANGES
|
|
281
|
+
|
|
282
|
+
- remove arui-feather support
|
|
283
|
+
- remove support for node <18
|
|
284
|
+
|
|
285
|
+
# 6.3.0 (2023-12-01)
|
|
286
|
+
|
|
287
|
+
### Features
|
|
288
|
+
|
|
289
|
+
- change ci configs 30f7d14
|
|
290
|
+
|
|
291
|
+
# 6.2.0 (2023-05-24)
|
|
292
|
+
|
|
293
|
+
### Features
|
|
294
|
+
|
|
295
|
+
- **eslint:** forbid import of lodash 7df02af
|
|
296
|
+
|
|
297
|
+
# 6.1.0 (2022-12-09)
|
|
298
|
+
|
|
299
|
+
### Features
|
|
300
|
+
|
|
301
|
+
- dump stylelint-core-vars fafcdfd
|
|
302
|
+
- separate lint and format, remove incremental false from husky 75d15b9
|
|
303
|
+
|
|
304
|
+
## 6.0.1 (2022-07-27)
|
|
305
|
+
|
|
306
|
+
### Bug Fixes
|
|
307
|
+
|
|
308
|
+
- **eslint:** fix node12 support 4d52210
|
|
309
|
+
|
|
310
|
+
# 6.0.0 (2022-07-25)
|
|
311
|
+
|
|
312
|
+
### Features
|
|
313
|
+
|
|
314
|
+
- add .yarnrc aac625f
|
|
315
|
+
- bump semantic-release, change repository url e98a7bc
|
|
316
|
+
- update deps a90bac2
|
|
317
|
+
- update lint-staged and husky 1fe7d74
|
|
318
|
+
- **build:** remove github from release config 5c361e4
|
|
319
|
+
- **build:** remove repo from release config c8d28ca
|
|
320
|
+
- **commitlint:** increase body-max-line-length 006ca95
|
|
321
|
+
- **commitlint:** update commitlint libs d7bfec1
|
|
322
|
+
- **eslint:** forbid unnecessary template literals for best prettier compatibility eee9f53
|
|
323
|
+
- **eslint:** remove harmful eslint rules after testing 561115a
|
|
324
|
+
- **gitignore:** add .DS_Store to .gitignore 272ae54
|
|
325
|
+
- **package.json:** remove repo link from package.json 64b8068
|
|
326
|
+
- **stylelint:** update stylelint, remove stylelint-prettier a61f26f
|
|
327
|
+
|
|
328
|
+
- feat(eslint)!: update eslint and plugins, add eslint-config-prettier, remove prettier-eslint 0787329
|
|
329
|
+
|
|
330
|
+
### BREAKING CHANGES
|
|
331
|
+
|
|
332
|
+
- dropping eslint <8 support, remove prettier-eslint
|
|
333
|
+
|
|
334
|
+
# [5.10.0](https://github.com/alfa-laboratory/arui-presets-lint/compare/v5.9.0...v5.10.0) (2021-11-01)
|
|
335
|
+
|
|
336
|
+
### Bug Fixes
|
|
337
|
+
|
|
338
|
+
- delete extra comment ([fec77cc](https://github.com/alfa-laboratory/arui-presets-lint/commit/fec77ccd5bb41cc3641729ea5fead768d88f141c))
|
|
339
|
+
- remarks from pr ([fa6f23f](https://github.com/alfa-laboratory/arui-presets-lint/commit/fa6f23f0ba86d12c3b24c8e65d8c8e872d234dad))
|
|
340
|
+
- return old husky ([95b8201](https://github.com/alfa-laboratory/arui-presets-lint/commit/95b82016adbba11e75585b27b4e1966beb77f44c))
|
|
341
|
+
- update yarnlock ([d8885f7](https://github.com/alfa-laboratory/arui-presets-lint/commit/d8885f755e10ece1c2c77e513a6b34e393feb81f))
|
|
342
|
+
|
|
343
|
+
### Features
|
|
344
|
+
|
|
345
|
+
- up libs ([08d4e78](https://github.com/alfa-laboratory/arui-presets-lint/commit/08d4e78024ad8b99b04d9e6e7848dd5d3056b7ad))
|
|
346
|
+
|
|
347
|
+
# [5.9.0](https://github.com/alfa-laboratory/arui-presets-lint/compare/v5.8.0...v5.9.0) (2021-09-03)
|
|
348
|
+
|
|
349
|
+
### Features
|
|
350
|
+
|
|
351
|
+
- **stylelint:** add stylelint-core-vars ([fca461d](https://github.com/alfa-laboratory/arui-presets-lint/commit/fca461dc5a2c95afb6d0be4af1a395fb0c270ecb))
|
|
352
|
+
|
|
353
|
+
# [5.8.0](https://github.com/alfa-laboratory/arui-presets-lint/compare/v5.7.0...v5.8.0) (2021-05-14)
|
|
354
|
+
|
|
355
|
+
### Features
|
|
356
|
+
|
|
357
|
+
- **eslint:** forbid to use context.only and test.only ([cfae8a5](https://github.com/alfa-laboratory/arui-presets-lint/commit/cfae8a5d7f42faacf24d0fbf716d2c3454ab6f65))
|
|
358
|
+
- **eslint:** forbid to use it.only and describe.only ([dd83d79](https://github.com/alfa-laboratory/arui-presets-lint/commit/dd83d79417ca89b2e1534cbe5617832d9eac5f47))
|
|
359
|
+
|
|
360
|
+
# [5.7.0](https://github.com/alfa-laboratory/arui-presets-lint/compare/v5.6.0...v5.7.0) (2021-03-10)
|
|
361
|
+
|
|
362
|
+
### Features
|
|
363
|
+
|
|
364
|
+
- **eslint:** add 'no-shadow' ts rule ([5817957](https://github.com/alfa-laboratory/arui-presets-lint/commit/5817957cbaa656f868bf67f4ec4b33e69b78d233))
|
|
365
|
+
- **eslint:** off eslint 'no-use-before-define' ([092093b](https://github.com/alfa-laboratory/arui-presets-lint/commit/092093bfd39944c8da7c241397456cafdd49b765))
|
|
366
|
+
|
|
367
|
+
# [5.6.0](https://github.com/alfa-laboratory/arui-presets-lint/compare/v5.5.0...v5.6.0) (2021-02-16)
|
|
368
|
+
|
|
369
|
+
### Bug Fixes
|
|
370
|
+
|
|
371
|
+
- fix yarn audit prototype pollution ([ee38bac](https://github.com/alfa-laboratory/arui-presets-lint/commit/ee38bac939329e261593153af4e28f5039503ac8))
|
|
372
|
+
|
|
373
|
+
### Features
|
|
374
|
+
|
|
375
|
+
- add eslint rule for check filenames ([07b48b5](https://github.com/alfa-laboratory/arui-presets-lint/commit/07b48b5e29d3fac6115fb84d10e982ea71729af1))
|
|
376
|
+
- update eslint-plugin-dirnames version ([2a14bb2](https://github.com/alfa-laboratory/arui-presets-lint/commit/2a14bb23d2d80283222e7d368607b056a8764cd6))
|
|
377
|
+
- update lint for check filenames & dirnames ([434b48a](https://github.com/alfa-laboratory/arui-presets-lint/commit/434b48acc94e5c15e2e1b15cce3b1e8df13c7cf7))
|
|
378
|
+
- update package.json ([e39da16](https://github.com/alfa-laboratory/arui-presets-lint/commit/e39da1640c3176e6116f56a082dd41c81c50755b))
|
|
379
|
+
- update yarn.lock ([3f708aa](https://github.com/alfa-laboratory/arui-presets-lint/commit/3f708aa264ff18eb746deb848285cabf105f4638))
|
|
380
|
+
- update yarn.lock ([1abc126](https://github.com/alfa-laboratory/arui-presets-lint/commit/1abc126673b37764509bbeb16905fa263dfac324))
|
|
381
|
+
|
|
382
|
+
# [5.5.0](https://github.com/alfa-laboratory/arui-presets-lint/compare/v5.4.1...v5.5.0) (2021-02-12)
|
|
383
|
+
|
|
384
|
+
### Features
|
|
385
|
+
|
|
386
|
+
- **eslint:** add padding-line-between-statements rule ([46da359](https://github.com/alfa-laboratory/arui-presets-lint/commit/46da3591c67a6d44db73516d14419852837c4faa))
|
|
387
|
+
|
|
388
|
+
## [5.4.1](https://github.com/alfa-laboratory/arui-presets-lint/compare/v5.4.0...v5.4.1) (2021-01-25)
|
|
389
|
+
|
|
390
|
+
### Bug Fixes
|
|
391
|
+
|
|
392
|
+
- **eslint:** add ignore typescript generic type params ([f7c1d35](https://github.com/alfa-laboratory/arui-presets-lint/commit/f7c1d354234a1f7bec7da1c157333b97bccf6bdc))
|
|
393
|
+
|
|
394
|
+
# [5.4.0](https://github.com/alfa-laboratory/arui-presets-lint/compare/v5.3.1...v5.4.0) (2020-12-14)
|
|
395
|
+
|
|
396
|
+
### Features
|
|
397
|
+
|
|
398
|
+
- disable jsx-one-expression-per-line ([bcba37b](https://github.com/alfa-laboratory/arui-presets-lint/commit/bcba37b9516306011a8914403814990d6336d7e8))
|
|
399
|
+
|
|
400
|
+
## [5.3.1](https://github.com/alfa-laboratory/arui-presets-lint/compare/v5.3.0...v5.3.1) (2020-10-02)
|
|
401
|
+
|
|
402
|
+
### Bug Fixes
|
|
403
|
+
|
|
404
|
+
- adds new package for semantic-release ([e999b7b](https://github.com/alfa-laboratory/arui-presets-lint/commit/e999b7b7591c7d2eacbcb2a13d903ecb6855c895))
|
|
405
|
+
- adds token for npm-publish ([73ccf46](https://github.com/alfa-laboratory/arui-presets-lint/commit/73ccf46f0325d21eea8875e38756d78ef23d7add))
|
|
406
|
+
- changed rules for codeowners ([8d40eb0](https://github.com/alfa-laboratory/arui-presets-lint/commit/8d40eb0fb1d26440e751809d5cdaf85ae68f1094))
|
|
407
|
+
- changed rules for CODEOWNERS ([7d7cd38](https://github.com/alfa-laboratory/arui-presets-lint/commit/7d7cd3889e30ce08d8bac2367cc3ffc9da46cb1b))
|
|
408
|
+
- changed version ([26adf63](https://github.com/alfa-laboratory/arui-presets-lint/commit/26adf632ce7e79bb821aab5272c22bfed8c5f66b))
|
|
409
|
+
|
|
410
|
+
# [5.1.0](https://github.com/alfa-laboratory/arui-presets-lint/compare/v5.0.0...v5.1.0) (2020-09-03)
|
|
411
|
+
|
|
412
|
+
### Features
|
|
413
|
+
|
|
414
|
+
- update prettier, stylelint ([55b3aa4](https://github.com/alfa-laboratory/arui-presets-lint/commit/55b3aa472c3c584bf1606c765d20acd348ad06a0))
|
|
415
|
+
|
|
416
|
+
# [5.0.0](https://github.com/alfa-laboratory/arui-presets-lint/compare/v4.3.0...v5.0.0) (2020-08-26)
|
|
417
|
+
|
|
418
|
+
### Bug Fixes
|
|
419
|
+
|
|
420
|
+
- adds all deleted dependencies ([823a275](https://github.com/alfa-laboratory/arui-presets-lint/commit/823a2757ffa4f99c4c8ba6062ce9df926cde0858))
|
|
421
|
+
|
|
422
|
+
### Features
|
|
423
|
+
|
|
424
|
+
- add some rules ([7e1ec33](https://github.com/alfa-laboratory/arui-presets-lint/commit/7e1ec3380f5e2993fbe4032a42cd2699aaf8cbb8))
|
|
425
|
+
- add some rules ([ecec52a](https://github.com/alfa-laboratory/arui-presets-lint/commit/ecec52a6d7184c795f4e78bec55845f95e51d24f))
|
|
426
|
+
- resolve yarn.lock ([85b5ae7](https://github.com/alfa-laboratory/arui-presets-lint/commit/85b5ae771c4c8a08f9a30aad486a22a9934a116c))
|
|
427
|
+
- **eslint:** add .eslintrc.js in .eslintignore ([b22988a](https://github.com/alfa-laboratory/arui-presets-lint/commit/b22988a6a3b1e3afed54f76a4de3a85d63ff607d))
|
|
428
|
+
- **eslint:** removed node.js v8.\* support ([abb7ed8](https://github.com/alfa-laboratory/arui-presets-lint/commit/abb7ed834518d82e47448f9fe91e5bd267d0f1ce))
|
|
429
|
+
- **eslint:** update config for eslint ([cad9237](https://github.com/alfa-laboratory/arui-presets-lint/commit/cad92374b6db1ea1db9d2f80eaaf0407f6dbb7fb))
|
|
430
|
+
- **eslint:** update deps ([5516c1c](https://github.com/alfa-laboratory/arui-presets-lint/commit/5516c1c16b51e471d89fd76b895c93ceb0acb750))
|
|
431
|
+
|
|
432
|
+
### BREAKING CHANGES
|
|
433
|
+
|
|
434
|
+
- dropped node.js 8 support, eslint was updated from 6 to 7
|
|
435
|
+
|
|
436
|
+
# [4.3.0](https://github.com/alfa-laboratory/arui-presets-lint/compare/v4.2.3...v4.3.0) (2020-08-24)
|
|
437
|
+
|
|
438
|
+
### Bug Fixes
|
|
439
|
+
|
|
440
|
+
- adds some fix ([396dfea](https://github.com/alfa-laboratory/arui-presets-lint/commit/396dfea6fa159c08287fcd9a5fff008bcff467df))
|
|
441
|
+
- **eslint:** replace deprecated label-has-for ([a24ab8e](https://github.com/alfa-laboratory/arui-presets-lint/commit/a24ab8e838bc40abfdbc6d341233a53507d15d58)), closes [#56](https://github.com/alfa-laboratory/arui-presets-lint/issues/56)
|
|
442
|
+
|
|
443
|
+
### Features
|
|
444
|
+
|
|
445
|
+
- adds dependencies for semantic-release ([18c84a3](https://github.com/alfa-laboratory/arui-presets-lint/commit/18c84a3ed7b067497295983407ecd4fb0c7a2463))
|
|
446
|
+
- adds new github token ([a903035](https://github.com/alfa-laboratory/arui-presets-lint/commit/a9030359af27204457656f9caada2bee174387a9))
|
|
447
|
+
- adds new github workflows ([28621e2](https://github.com/alfa-laboratory/arui-presets-lint/commit/28621e2f4b301dbe0e03740645e3e8ffc62a8e07))
|
|
448
|
+
- adds release.config for semantic-release ([d517bfd](https://github.com/alfa-laboratory/arui-presets-lint/commit/d517bfdbc72c377805ec55de21dcc047169fea14))
|
|
449
|
+
- **nodejs:** deleted test for 8th node's version ([edf247e](https://github.com/alfa-laboratory/arui-presets-lint/commit/edf247ed5731cc7158e182bb1006a2370770133e))
|
|
450
|
+
|
|
451
|
+
<a name="4.2.3"></a>
|
|
452
|
+
|
|
453
|
+
## [4.2.3](https://github.com/alfa-laboratory/arui-presets-lint/compare/v4.2.2...v4.2.3) (2020-07-09)
|
|
454
|
+
|
|
455
|
+
### Features
|
|
456
|
+
|
|
457
|
+
- **upgrade:** upgraded a library ([#75](https://github.com/alfa-laboratory/arui-presets-lint/issues/75)) ([a8fb323](https://github.com/alfa-laboratory/arui-presets-lint/commit/a8fb323))
|
|
458
|
+
|
|
459
|
+
<a name="4.2.2"></a>
|
|
460
|
+
|
|
461
|
+
## [4.2.2](https://github.com/alfa-laboratory/arui-presets-lint/compare/v4.2.1...v4.2.2) (2020-06-22)
|
|
462
|
+
|
|
463
|
+
### Bug Fixes
|
|
464
|
+
|
|
465
|
+
- **eslint:** disable max-len explicitly ([e58103f](https://github.com/alfa-laboratory/arui-presets-lint/commit/e58103f))
|
|
466
|
+
|
|
467
|
+
<a name="4.2.1"></a>
|
|
468
|
+
|
|
469
|
+
## [4.2.1](https://github.com/alfa-laboratory/arui-presets-lint/compare/v4.2.0...v4.2.1) (2020-06-22)
|
|
470
|
+
|
|
471
|
+
### Bug Fixes
|
|
472
|
+
|
|
473
|
+
- **eslint:** disable conflict rules ([d4b2af5](https://github.com/alfa-laboratory/arui-presets-lint/commit/d4b2af5))
|
|
474
|
+
- **eslint:** remove max-len ([ab5be9c](https://github.com/alfa-laboratory/arui-presets-lint/commit/ab5be9c))
|
|
475
|
+
|
|
476
|
+
<a name="4.2.0"></a>
|
|
477
|
+
|
|
478
|
+
# [4.2.0](https://github.com/alfa-laboratory/arui-presets-lint/compare/v4.1.3...v4.2.0) (2020-04-30)
|
|
479
|
+
|
|
480
|
+
### Features
|
|
481
|
+
|
|
482
|
+
- **upgrade:** add no-useles-path-segments rule ([043fdc6](https://github.com/alfa-laboratory/arui-presets-lint/commit/043fdc6))
|
|
483
|
+
|
|
484
|
+
<a name="4.1.2"></a>
|
|
485
|
+
|
|
486
|
+
## [4.1.2](https://github.com/alfa-laboratory/arui-presets-lint/compare/v4.1.1...v4.1.2) (2020-04-09)
|
|
487
|
+
|
|
488
|
+
### Bug Fixes
|
|
489
|
+
|
|
490
|
+
- **eslint:** added avoidEscape for quotes ([cbd63d8](https://github.com/alfa-laboratory/arui-presets-lint/commit/cbd63d8))
|
|
491
|
+
|
|
492
|
+
### Features
|
|
493
|
+
|
|
494
|
+
- add dirnames eslint rule ([d33eb66](https://github.com/alfa-laboratory/arui-presets-lint/commit/d33eb66))
|
|
495
|
+
|
|
496
|
+
<a name="4.1.1"></a>
|
|
497
|
+
|
|
498
|
+
## [4.1.1](https://github.com/alfa-laboratory/arui-presets-lint/compare/v4.1.0...v4.1.1) (2020-04-06)
|
|
499
|
+
|
|
500
|
+
### Bug Fixes
|
|
501
|
+
|
|
502
|
+
- update yarn.lock ([eab5945](https://github.com/alfa-laboratory/arui-presets-lint/commit/eab5945))
|
|
503
|
+
- **arui-cssvars:** fix library ([0599231](https://github.com/alfa-laboratory/arui-presets-lint/commit/0599231))
|
|
504
|
+
- **arui-cssvars:** update lib version to skip warnings when linter rule is disabled ([c1e4565](https://github.com/alfa-laboratory/arui-presets-lint/commit/c1e4565))
|
|
505
|
+
|
|
506
|
+
<a name="4.1.0"></a>
|
|
507
|
+
|
|
508
|
+
# [4.1.0](https://github.com/alfa-laboratory/arui-presets-lint/compare/v4.0.0...v4.1.0) (2020-03-26)
|
|
509
|
+
|
|
510
|
+
### Bug Fixes
|
|
511
|
+
|
|
512
|
+
- **eslint:** allow to import devDependencies in storybook and test files ([ec264d4](https://github.com/alfa-laboratory/arui-presets-lint/commit/ec264d4))
|
|
513
|
+
- **eslint:** resolve conflict with prettier ([1be5db5](https://github.com/alfa-laboratory/arui-presets-lint/commit/1be5db5))
|
|
514
|
+
|
|
515
|
+
### Features
|
|
516
|
+
|
|
517
|
+
- **eslint:** add cypress support ([f93f601](https://github.com/alfa-laboratory/arui-presets-lint/commit/f93f601))
|
|
518
|
+
|
|
519
|
+
<a name="4.0.0"></a>
|
|
520
|
+
|
|
521
|
+
# [4.0.0](https://github.com/alfa-laboratory/arui-presets-lint/compare/v3.0.1...v4.0.0) (2020-03-18)
|
|
522
|
+
|
|
523
|
+
### Bug Fixes
|
|
524
|
+
|
|
525
|
+
- **eslint:** disable indent and max-len rules ([97967ed](https://github.com/alfa-laboratory/arui-presets-lint/commit/97967ed))
|
|
526
|
+
- **eslint:** use ts parser for all files ([609cda5](https://github.com/alfa-laboratory/arui-presets-lint/commit/609cda5))
|
|
527
|
+
- **package:** fix yarn audit errors ([3f73abc](https://github.com/alfa-laboratory/arui-presets-lint/commit/3f73abc))
|
|
528
|
+
- **package:** restore version string ([a59243c](https://github.com/alfa-laboratory/arui-presets-lint/commit/a59243c))
|
|
529
|
+
|
|
530
|
+
### Features
|
|
531
|
+
|
|
532
|
+
- add prettier ([077b698](https://github.com/alfa-laboratory/arui-presets-lint/commit/077b698))
|
|
533
|
+
- add ts example ([dd2c8b0](https://github.com/alfa-laboratory/arui-presets-lint/commit/dd2c8b0))
|
|
534
|
+
- new configuration, add prettier instructions ([3e0fa81](https://github.com/alfa-laboratory/arui-presets-lint/commit/3e0fa81))
|
|
535
|
+
- use prettier instead of prettier-eslint ([b954d26](https://github.com/alfa-laboratory/arui-presets-lint/commit/b954d26))
|
|
536
|
+
- **eslint:** add warn rules for formatting ([921947d](https://github.com/alfa-laboratory/arui-presets-lint/commit/921947d))
|
|
537
|
+
|
|
538
|
+
<a name="3.0.1"></a>
|
|
539
|
+
|
|
540
|
+
## [3.0.1](https://github.com/alfa-laboratory/arui-presets-lint/compare/v3.0.0...v3.0.1) (2020-02-12)
|
|
541
|
+
|
|
542
|
+
### Features
|
|
543
|
+
|
|
544
|
+
- remove jsx-one-expression-per-line ([edca46e](https://github.com/alfa-laboratory/arui-presets-lint/commit/edca46e))
|
|
545
|
+
|
|
546
|
+
<a name="3.0.0"></a>
|
|
547
|
+
|
|
548
|
+
# [3.0.0](https://github.com/alfa-laboratory/arui-presets-lint/compare/v2.0.1...v3.0.0) (2020-02-12)
|
|
549
|
+
|
|
550
|
+
### Bug Fixes
|
|
551
|
+
|
|
552
|
+
- **js-input:** fix eslint errors ([5b34d19](https://github.com/alfa-laboratory/arui-presets-lint/commit/5b34d19))
|
|
553
|
+
|
|
554
|
+
### Features
|
|
555
|
+
|
|
556
|
+
- **dependencies:** add eslint-plugin-react-hooks and extend rules. update plugin eslint ([4d73805](https://github.com/alfa-laboratory/arui-presets-lint/commit/4d73805))
|
|
557
|
+
|
|
558
|
+
<a name="2.0.1"></a>
|
|
559
|
+
|
|
560
|
+
## [2.0.1](https://github.com/alfa-laboratory/arui-presets-lint/compare/v2.0.0...v2.0.1) (2019-12-24)
|
|
561
|
+
|
|
562
|
+
### Bug Fixes
|
|
563
|
+
|
|
564
|
+
- **stylelint:** fix path to plugin, up plugin version ([e1ebf5e](https://github.com/alfa-laboratory/arui-presets-lint/commit/e1ebf5e))
|
|
565
|
+
|
|
566
|
+
<a name="2.0.0"></a>
|
|
567
|
+
|
|
568
|
+
# [2.0.0](https://github.com/alfa-laboratory/arui-presets-lint/compare/v1.2.1...v2.0.0) (2019-12-06)
|
|
569
|
+
|
|
570
|
+
<a name="1.2.1"></a>
|
|
571
|
+
|
|
572
|
+
## [1.2.1](https://github.com/alfa-laboratory/arui-presets-lint/compare/v1.1.0...v1.2.1) (2019-09-03)
|
|
573
|
+
|
|
574
|
+
### Bug Fixes
|
|
575
|
+
|
|
576
|
+
- **eslint:** disable multiline-comment-style rule ([65ea774](https://github.com/alfa-laboratory/arui-presets-lint/commit/65ea774))
|
|
577
|
+
|
|
578
|
+
### Features
|
|
579
|
+
|
|
580
|
+
- **stylelint:** use arui-cssvars ([2a2cc6e](https://github.com/alfa-laboratory/arui-presets-lint/commit/2a2cc6e))
|
|
581
|
+
|
|
582
|
+
<a name="1.2.0"></a>
|
|
583
|
+
|
|
584
|
+
# [1.2.0](https://github.com/alfa-laboratory/arui-presets-lint/compare/v1.1.0...v1.2.0) (2019-04-04)
|
|
585
|
+
|
|
586
|
+
### Features
|
|
587
|
+
|
|
588
|
+
- **stylelint:** use arui-cssvars ([2a2cc6e](https://github.com/alfa-laboratory/arui-presets-lint/commit/2a2cc6e))
|
|
589
|
+
|
|
590
|
+
<a name="1.1.0"></a>
|
|
591
|
+
|
|
592
|
+
# 1.1.0 (2019-03-13)
|
|
593
|
+
|
|
594
|
+
### Features
|
|
595
|
+
|
|
596
|
+
- **configuration:** add new stylistic rules ([d6500f6](https://github.com/alfa-laboratory/arui-presets-lint/commit/d6500f6))
|
package/cli/index.d.mts
ADDED