eslint-config-vylda-typescript 5.5.0 → 6.0.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 CHANGED
@@ -4,6 +4,17 @@ All notable changes to this component will be documented in this file.
4
4
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
5
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [6.0.0] - 2025-01-02
8
+ ### Added
9
+ - Rules
10
+ - @typescript-eslint/no-useless-default-assignment [Vilda Lipold]
11
+ ### Updated
12
+ - Packages [Vilda Lipold]
13
+
14
+ ## [5.6.0] - 2025-12-06
15
+ ### Updated
16
+ - eslint-config-vylda-vanilla package [Vilda Lipold]
17
+
7
18
  ## [5.5.0] - 2025-12-06
8
19
  ### Added
9
20
  - Rules
@@ -12,7 +23,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
12
23
  - typescript errors in create stylictic rules [Vilda Lipold]
13
24
  ### Removed
14
25
  - deprecated option overrides.arrow in type-annotation-spacing rule [Vilda Lipold]
15
-
16
26
  ### Updated
17
27
  - packages [Vilda Lipold]
18
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-vylda-typescript",
3
- "version": "5.5.0",
3
+ "version": "6.0.0",
4
4
  "description": "Eslint Typescript rules for JS and TS vanilla projects",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -26,17 +26,17 @@
26
26
  "devDependencies": {
27
27
  "@eslint/config-inspector": "^1.4.2",
28
28
  "@types/espree": "^10.1.0",
29
- "@types/node": "^24.10.1",
29
+ "@types/node": "^25.0.3",
30
30
  "espree": "^11.0.0",
31
31
  "husky": "^9.1.7",
32
32
  "typescript": "^5.9.3"
33
33
  },
34
34
  "dependencies": {
35
- "eslint": "^9.39.1",
36
- "eslint-config-vylda-vanilla": "^4.5.0",
35
+ "eslint": "^9.39.2",
36
+ "eslint-config-vylda-vanilla": "^5.0.0",
37
37
  "eslint-import-resolver-typescript": "^4.4.4",
38
38
  "tslib": "^2.8.1",
39
- "typescript-eslint": "^8.48.1"
39
+ "typescript-eslint": "^8.51.0"
40
40
  },
41
41
  "engines": {
42
42
  "node": ">=20"
@@ -534,6 +534,10 @@ const config = [
534
534
  // https://typescript-eslint.io/rules/no-useless-constructor/
535
535
  '@typescript-eslint/no-useless-constructor': 'error',
536
536
 
537
+ // Disallow default values that will never be used.
538
+ // https://typescript-eslint.io/rules/no-useless-default-assignment/
539
+ '@typescript-eslint/no-useless-default-assignment': 'error',
540
+
537
541
  // Disallow empty exports that don't change anything in a module file.
538
542
  // https://typescript-eslint.io/rules/no-useless-empty-export/
539
543
  '@typescript-eslint/no-useless-empty-export': 'error',