eslint-config-vylda-typescript 6.0.0 → 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 +11 -0
- package/README.md +2 -2
- package/index.d.ts +2 -0
- package/package.json +1 -1
- package/tsconfig.json +1 -0
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.2] - 2025-01-02
|
|
8
|
+
### Fixed
|
|
9
|
+
- index.d.ts for correct types of nonTsConfigFilesRule export [Vilda Lipold]
|
|
10
|
+
|
|
11
|
+
## [6.0.1] - 2025-01-02
|
|
12
|
+
### Added
|
|
13
|
+
- Types for nonTsConfigFiles and nonTsConfigFilesRules exports [Vilda Lipold]
|
|
14
|
+
### Updated
|
|
15
|
+
- tsconfig.json to disable emit [Vilda Lipold]
|
|
16
|
+
- Readme [Vilda Lipold]
|
|
17
|
+
|
|
7
18
|
## [6.0.0] - 2025-01-02
|
|
8
19
|
### Added
|
|
9
20
|
- 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 nonTsConfigFilesRule: TConfig[number];
|
|
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