@rsdk/eslint-plugin 3.6.2-next.0 → 4.0.0-next.3

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 +16 -0
  2. package/index.js +4 -0
  3. package/package.json +10 -9
package/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
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.3](https://github.com/R-Vision/rsdk/compare/v4.0.0-next.2...v4.0.0-next.3) (2023-11-12)
7
+
8
+ ### Bug Fixes
9
+
10
+ * all yarn peers dependency issues ([e0db9ef](https://github.com/R-Vision/rsdk/commit/e0db9ef1ab8a4df4e1f8ff6f6a9e3728f497549b))
11
+
12
+ ## [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)
13
+
14
+ ### ⚠ BREAKING CHANGES
15
+
16
+ * update eslint plugin deps and conf
17
+
18
+ ### Features
19
+
20
+ * update eslint plugin deps and conf ([e59f061](https://github.com/R-Vision/rsdk/commit/e59f061f473b47ec220464ee6da19f1acfd3160b))
21
+
6
22
  ## [3.6.2-next.0](https://github.com/R-Vision/rsdk/compare/v3.6.1...v3.6.2-next.0) (2023-10-25)
7
23
 
8
24
  **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.3",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "publishConfig": {
@@ -8,15 +8,16 @@
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
+ "prettier": "^3.0.0"
20
21
  },
21
- "gitHead": "7b42e852c13332dfb217e9ba5f0c03fea5b34004"
22
+ "gitHead": "313c39a379ea9ace9d94939223a53c46c12d77f9"
22
23
  }