eslint-config-vylda-typescript 6.0.3 → 6.0.4

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,10 @@ 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.4] - 2026-01-02
8
+ ### Added
9
+ - nonTsConfigFilesRule to getConfig function
10
+
7
11
  ## [6.0.3] - 2026-01-02
8
12
  ### Updated
9
13
  - Enhance nonTsConfigFiles [Vilda Lipold]
package/index.js CHANGED
@@ -128,6 +128,7 @@ const getConfig = (
128
128
  ...tsConfigsWithFiles,
129
129
  ...barrelsConfigsWithFiles,
130
130
  ...ignores,
131
+ nonTsConfigFilesRule,
131
132
  ];
132
133
 
133
134
  return eslintConfig;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-vylda-typescript",
3
- "version": "6.0.3",
3
+ "version": "6.0.4",
4
4
  "description": "Eslint Typescript rules for JS and TS vanilla projects",
5
5
  "main": "index.js",
6
6
  "type": "module",