@rsdk/eslint-plugin 3.6.2-next.0 → 4.0.0-next.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/index.js +4 -0
  3. package/package.json +9 -9
package/CHANGELOG.md CHANGED
@@ -3,6 +3,16 @@
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.0](https://github.com/R-Vision/rsdk/compare/v3.6.2-next.0...v4.0.0-next.0) (2023-10-26)
7
+
8
+ ### ⚠ BREAKING CHANGES
9
+
10
+ * update eslint plugin deps and conf
11
+
12
+ ### Features
13
+
14
+ * update eslint plugin deps and conf ([e59f061](https://github.com/R-Vision/rsdk/commit/e59f061f473b47ec220464ee6da19f1acfd3160b))
15
+
6
16
  ## [3.6.2-next.0](https://github.com/R-Vision/rsdk/compare/v3.6.1...v3.6.2-next.0) (2023-10-25)
7
17
 
8
18
  **Note:** Version bump only for package @rsdk/eslint-plugin
package/index.js CHANGED
@@ -121,6 +121,10 @@ module.exports = {
121
121
  // портит regex например /\/?([\w\-_]+:[\w\-_]+)$/gi.exec(tag)?.[1]
122
122
  'unicorn/better-regex': 'off',
123
123
  'unicorn/no-unused-properties': 'off',
124
+ '@typescript-eslint/no-unused-vars': [
125
+ 'error',
126
+ { varsIgnorePattern: '^_', argsIgnorePattern: '^_' },
127
+ ],
124
128
  // Пытался как-то консистентно эту историю организовать, но это около невозможно потому что порты например нет смысла делить
125
129
  'unicorn/numeric-separators-style': 'off',
126
130
  'unicorn/prefer-json-parse-buffer': 'error',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rsdk/eslint-plugin",
3
- "version": "3.6.2-next.0",
3
+ "version": "4.0.0-next.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "publishConfig": {
@@ -8,15 +8,15 @@
8
8
  },
9
9
  "license": "Apache License 2.0",
10
10
  "peerDependencies": {
11
- "@typescript-eslint/eslint-plugin": "^6.0.0",
12
- "@typescript-eslint/parser": "^6.0.0",
13
- "eslint": "^8.40.0",
14
- "eslint-config-prettier": "^8.8.0",
11
+ "@typescript-eslint/eslint-plugin": "^6.9.0",
12
+ "@typescript-eslint/parser": "^6.9.0",
13
+ "eslint": "^8.52.0",
14
+ "eslint-config-prettier": "^9.0.0",
15
15
  "eslint-formatter-codeframe": "^7.32.1",
16
- "eslint-plugin-import": "^2.27.5",
17
- "eslint-plugin-prettier": "^5.0.0",
16
+ "eslint-plugin-import": "^2.29.0",
17
+ "eslint-plugin-prettier": "^5.0.1",
18
18
  "eslint-plugin-simple-import-sort": "^10.0.0",
19
- "eslint-plugin-unicorn": "^47.0.0"
19
+ "eslint-plugin-unicorn": "^48.0.1"
20
20
  },
21
- "gitHead": "7b42e852c13332dfb217e9ba5f0c03fea5b34004"
21
+ "gitHead": "2d50b44d35be75f6768d4b1d57ccc6b7641bf146"
22
22
  }