eslint-config-vylda-typescript 6.0.1 → 6.0.2

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.2] - 2025-01-02
8
+ ### Fixed
9
+ - index.d.ts for correct types of nonTsConfigFilesRule export [Vilda Lipold]
10
+
7
11
  ## [6.0.1] - 2025-01-02
8
12
  ### Added
9
13
  - Types for nonTsConfigFiles and nonTsConfigFilesRules exports [Vilda Lipold]
package/index.d.ts CHANGED
@@ -38,7 +38,7 @@ export const files: Array<string>;
38
38
  export const ignores: TConfig;
39
39
  export const node: TConfig;
40
40
  export const nonTsConfigFiles: Array<string>;
41
- export const nonTsConfigFilesRules: TConfig;
41
+ export const nonTsConfigFilesRule: TConfig[number];
42
42
  export const off: TConfig;
43
43
  export const perfectionist: TConfig;
44
44
  export const plugins: Record<string, ESLint.Plugin>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-vylda-typescript",
3
- "version": "6.0.1",
3
+ "version": "6.0.2",
4
4
  "description": "Eslint Typescript rules for JS and TS vanilla projects",
5
5
  "main": "index.js",
6
6
  "type": "module",