eslint-config-vylda-typescript 6.0.0 → 6.0.1

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,13 @@ 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.1] - 2025-01-02
8
+ ### Added
9
+ - Types for nonTsConfigFiles and nonTsConfigFilesRules exports [Vilda Lipold]
10
+ ### Updated
11
+ - tsconfig.json to disable emit [Vilda Lipold]
12
+ - Readme [Vilda Lipold]
13
+
7
14
  ## [6.0.0] - 2025-01-02
8
15
  ### Added
9
16
  - Rules
package/README.md CHANGED
@@ -342,8 +342,8 @@ You can also use `mapFiles` function to map files for all rules.
342
342
  - `ignores` - ESLint config with global ignored folder patterns ([default values](https://gitlab.com/Vylda/eslint-config-vylda-vanilla/-/blob/main/ignores.mjs#L4), [documentation](https://eslint.org/docs/latest/use/configure/ignore#ignoring-files))
343
343
  - `mapFiles` - helper function to map files for all configs ([source](https://gitlab.com/Vylda/eslint-config-vylda-vanilla/-/blob/main/mapFiles.mjs))
344
344
  - `node` - ESLint config with rules for Node.js ([source](https://gitlab.com/Vylda/eslint-config-vylda-vanilla/-/blob/main/rules/node.mjs), [documentation](https://github.com/eslint-community/eslint-plugin-n?tab=readme-ov-file#-rules))
345
- - `nonTsConfigFiles` - Array of non typescript files for nonTsConfigFilesRule
346
- - `nonTsConfigFilesRule` - ESLint rule for non-TypeScript files
345
+ - `nonTsConfigFiles` - Array of non typescript files for nonTsConfigFilesRule ([source](./eslint.config.mjs#L12))
346
+ - `nonTsConfigFilesRule` - ESLint rule for non-TypeScript files ([source](./eslint.config.mjs#L56))
347
347
  - `perfectionist` - ESLint config with rules for perfectionist ([source](https://gitlab.com/Vylda/eslint-config-vylda-vanilla/-/blob/main/rules/perfectionist.mjs), [documentation](https://perfectionist.dev/rules))
348
348
  - `plugins` - default plugins used in this config ([source](./eslint.config.mjs#L26))
349
349
  - `plus` - ESLint config with rules for extended rules ([source](./rules/plus.mjs), [documentation](https://eslint.style/packages/plus))
package/index.d.ts CHANGED
@@ -37,6 +37,8 @@ export const es6: TConfig;
37
37
  export const files: Array<string>;
38
38
  export const ignores: TConfig;
39
39
  export const node: TConfig;
40
+ export const nonTsConfigFiles: Array<string>;
41
+ export const nonTsConfigFilesRules: TConfig;
40
42
  export const off: TConfig;
41
43
  export const perfectionist: TConfig;
42
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.0",
3
+ "version": "6.0.1",
4
4
  "description": "Eslint Typescript rules for JS and TS vanilla projects",
5
5
  "main": "index.js",
6
6
  "type": "module",
package/tsconfig.json CHANGED
@@ -6,6 +6,7 @@
6
6
  "checkJs": true,
7
7
  "esModuleInterop": true,
8
8
  "module": "nodenext",
9
+ "noEmit": true,
9
10
  "skipLibCheck": true,
10
11
  "strict": true,
11
12
  "target": "es5"