@itcase/lint 1.1.101 → 1.1.102

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 CHANGED
@@ -1,3 +1,14 @@
1
+ ## [1.1.102](https://github.com/ITCase/itcase-lint/compare/v1.1.101...v1.1.102) (2026-03-11)
2
+
3
+ ### Features
4
+
5
+ * **eslint:** Add res to reposne ([f6b241b](https://github.com/ITCase/itcase-lint/commit/f6b241bced3b6ecebf8a2257f09045849b763629))
6
+
7
+ ### Bug Fixes
8
+
9
+ * **eslint:** E > Event | Element ([a9fc74e](https://github.com/ITCase/itcase-lint/commit/a9fc74e2a9418cd35d516f378137eb7a2e3e9dc3))
10
+ * **other:** Updarw deps bot ([b973f18](https://github.com/ITCase/itcase-lint/commit/b973f18cd531aa18bbabd2187eb3c0960d1bda3f))
11
+
1
12
  ## [1.1.101](https://github.com/ITCase/itcase-lint/compare/v1.1.100...v1.1.101) (2026-03-06)
2
13
 
3
14
  ### Refactoring
@@ -5,6 +5,7 @@
5
5
  * - use: что писать вместо (строка или массив вариантов).
6
6
  */
7
7
  const RESTRICTED_WORDS = [
8
+ { forbidden: 'e', use: ['event', 'element'] },
8
9
  { forbidden: 'btn', use: 'button' },
9
10
  { forbidden: 'lbl', use: 'label' },
10
11
  { forbidden: 'lnk', use: 'link' },
@@ -13,6 +14,7 @@ const RESTRICTED_WORDS = [
13
14
  { forbidden: 'pw', use: 'password' },
14
15
  { forbidden: 'pwd', use: 'password' },
15
16
  { forbidden: 'usr', use: 'user' },
17
+ { forbidden: 'res', use: 'response' },
16
18
  { forbidden: 'mod', use: ['modify', 'module'] },
17
19
  { forbidden: 'tmp', use: 'temporary' },
18
20
  { forbidden: 'dir', use: ['directory', 'direction'] },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itcase/lint",
3
- "version": "1.1.101",
3
+ "version": "1.1.102",
4
4
  "author": "ITCase",
5
5
  "description": "Code style linter configuration presets",
6
6
  "engines": {