@rsdk/eslint-plugin 4.0.0-next.15 → 4.0.0-next.17

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
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [4.0.0-next.17](https://github.com/R-Vision/rsdk/compare/v4.0.0-next.16...v4.0.0-next.17) (2023-12-01)
7
+
8
+ **Note:** Version bump only for package @rsdk/eslint-plugin
9
+
10
+ ## [4.0.0-next.16](https://github.com/R-Vision/rsdk/compare/v4.0.0-next.15...v4.0.0-next.16) (2023-11-30)
11
+
12
+ **Note:** Version bump only for package @rsdk/eslint-plugin
13
+
6
14
  ## [4.0.0-next.15](https://github.com/R-Vision/rsdk/compare/v4.0.0-next.14...v4.0.0-next.15) (2023-11-30)
7
15
 
8
16
  ### Features
package/index.js CHANGED
@@ -23,6 +23,7 @@ module.exports = {
23
23
  'plugin:import/typescript',
24
24
  'plugin:prettier/recommended',
25
25
  'plugin:unicorn/all',
26
+ 'plugin:deprecation/recommended',
26
27
  ],
27
28
  root: true,
28
29
  env: {
@@ -123,7 +124,7 @@ module.exports = {
123
124
  'unicorn/no-unused-properties': 'off',
124
125
  '@typescript-eslint/no-unused-vars': [
125
126
  'error',
126
- {varsIgnorePattern: '^_', argsIgnorePattern: '^_'},
127
+ { varsIgnorePattern: '^_', argsIgnorePattern: '^_' },
127
128
  ],
128
129
  // Пытался как-то консистентно эту историю организовать, но это около невозможно потому что порты например нет смысла делить
129
130
  'unicorn/numeric-separators-style': 'off',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rsdk/eslint-plugin",
3
- "version": "4.0.0-next.15",
3
+ "version": "4.0.0-next.17",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "publishConfig": {
@@ -13,11 +13,13 @@
13
13
  "eslint": "^8.52.0",
14
14
  "eslint-config-prettier": "^9.0.0",
15
15
  "eslint-formatter-codeframe": "^7.32.1",
16
+ "eslint-plugin-deprecation": "^2.0.0",
16
17
  "eslint-plugin-import": "^2.29.0",
17
18
  "eslint-plugin-prettier": "^5.0.1",
18
19
  "eslint-plugin-simple-import-sort": "^10.0.0",
19
20
  "eslint-plugin-unicorn": "^49.0.0",
20
- "prettier": "^3.0.0"
21
+ "prettier": "^3.0.0",
22
+ "typescript": "^5.3.2"
21
23
  },
22
- "gitHead": "8abd89d7800375749b024410dc3465ff40389277"
24
+ "gitHead": "151c1f08b2e08e1516ce7b606007296b895698df"
23
25
  }