@danielwaltz/eslint-config 2.6.0 → 2.6.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 +32 -0
- package/dist/index.d.mts +3 -6
- package/dist/index.mjs +1 -1
- package/package.json +13 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,38 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
3
|
|
|
4
|
+
## v2.6.2
|
|
5
|
+
|
|
6
|
+
[compare changes](https://github.com/danielwaltz/eslint-config/compare/v2.6.1...v2.6.2)
|
|
7
|
+
|
|
8
|
+
### 🩹 Fixes
|
|
9
|
+
|
|
10
|
+
- Update name of define model in macros order rule ([9c813c8](https://github.com/danielwaltz/eslint-config/commit/9c813c8))
|
|
11
|
+
|
|
12
|
+
### ❤️ Contributors
|
|
13
|
+
|
|
14
|
+
- Daniel Waltz ([@danielwaltz](https://github.com/danielwaltz))
|
|
15
|
+
|
|
16
|
+
## v2.6.1
|
|
17
|
+
|
|
18
|
+
[compare changes](https://github.com/danielwaltz/eslint-config/compare/v2.6.0...v2.6.1)
|
|
19
|
+
|
|
20
|
+
### 🩹 Fixes
|
|
21
|
+
|
|
22
|
+
- Update sxzz config and deps ([9b6b61d](https://github.com/danielwaltz/eslint-config/commit/9b6b61d))
|
|
23
|
+
|
|
24
|
+
### 🏡 Chore
|
|
25
|
+
|
|
26
|
+
- Add publish config ([4276d14](https://github.com/danielwaltz/eslint-config/commit/4276d14))
|
|
27
|
+
|
|
28
|
+
### 🤖 CI
|
|
29
|
+
|
|
30
|
+
- Update step versions ([5c4d759](https://github.com/danielwaltz/eslint-config/commit/5c4d759))
|
|
31
|
+
|
|
32
|
+
### ❤️ Contributors
|
|
33
|
+
|
|
34
|
+
- Daniel Waltz ([@danielwaltz](https://github.com/danielwaltz))
|
|
35
|
+
|
|
4
36
|
## v2.6.0
|
|
5
37
|
|
|
6
38
|
[compare changes](https://github.com/danielwaltz/eslint-config/compare/v2.5.1...v2.6.0)
|
package/dist/index.d.mts
CHANGED
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
import { sxzz } from "@sxzz/eslint-config";
|
|
2
|
-
import * as eslint_flat_config_utils0$1 from "eslint-flat-config-utils";
|
|
3
2
|
import * as eslint_flat_config_utils0 from "eslint-flat-config-utils";
|
|
4
|
-
import { DefaultConfigNamesMap, DefaultConfigNamesMap as DefaultConfigNamesMap$1, ResolvableFlatConfig, defineFlatConfig } from "eslint-flat-config-utils";
|
|
5
|
-
import * as eslint3 from "eslint";
|
|
6
|
-
import * as eslint0 from "eslint";
|
|
3
|
+
import { DefaultConfigNamesMap, DefaultConfigNamesMap as DefaultConfigNamesMap$1, FlatConfigComposer, ResolvableFlatConfig, defineFlatConfig } from "eslint-flat-config-utils";
|
|
7
4
|
import { Linter } from "eslint";
|
|
8
5
|
export * from "@sxzz/eslint-config";
|
|
9
6
|
|
|
@@ -12,9 +9,9 @@ type BaseConfig = Linter.Config;
|
|
|
12
9
|
type BaseConfigNames = keyof DefaultConfigNamesMap$1;
|
|
13
10
|
//#endregion
|
|
14
11
|
//#region src/utils.d.ts
|
|
15
|
-
declare function defineFlatConfigs<const TConfig extends BaseConfig = BaseConfig, const TConfigNames extends string = BaseConfigNames>(...configs: ResolvableFlatConfig<TConfig>[]):
|
|
12
|
+
declare function defineFlatConfigs<const TConfig extends BaseConfig = BaseConfig, const TConfigNames extends string = BaseConfigNames>(...configs: ResolvableFlatConfig<TConfig>[]): FlatConfigComposer<TConfig, TConfigNames>;
|
|
16
13
|
//#endregion
|
|
17
14
|
//#region src/index.d.ts
|
|
18
|
-
declare function danielwaltz<const TConfig extends BaseConfig = BaseConfig, const TConfigNames extends string = BaseConfigNames>(...params: Parameters<typeof sxzz>): eslint_flat_config_utils0.FlatConfigComposer<
|
|
15
|
+
declare function danielwaltz<const TConfig extends BaseConfig = BaseConfig, const TConfigNames extends string = BaseConfigNames>(...params: Parameters<typeof sxzz>): eslint_flat_config_utils0.FlatConfigComposer<TConfig, TConfigNames>;
|
|
19
16
|
//#endregion
|
|
20
17
|
export { type DefaultConfigNamesMap, danielwaltz, defineFlatConfig, defineFlatConfigs };
|
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@danielwaltz/eslint-config",
|
|
3
|
-
"version": "2.6.
|
|
4
|
-
"packageManager": "pnpm@10.
|
|
3
|
+
"version": "2.6.2",
|
|
4
|
+
"packageManager": "pnpm@10.20.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"eslint-config"
|
|
@@ -26,6 +26,11 @@
|
|
|
26
26
|
"default": "./dist/index.mjs"
|
|
27
27
|
}
|
|
28
28
|
},
|
|
29
|
+
"publishConfig": {
|
|
30
|
+
"access": "public",
|
|
31
|
+
"provenance": true,
|
|
32
|
+
"registry": "https://registry.npmjs.org/"
|
|
33
|
+
},
|
|
29
34
|
"scripts": {
|
|
30
35
|
"build": "obuild",
|
|
31
36
|
"stub": "obuild --stub",
|
|
@@ -40,17 +45,17 @@
|
|
|
40
45
|
"prettier": ">=3"
|
|
41
46
|
},
|
|
42
47
|
"dependencies": {
|
|
43
|
-
"@sxzz/eslint-config": "^7.
|
|
44
|
-
"eslint-flat-config-utils": "^2.1.
|
|
45
|
-
"eslint-plugin-depend": "^1.
|
|
48
|
+
"@sxzz/eslint-config": "^7.2.8",
|
|
49
|
+
"eslint-flat-config-utils": "^2.1.4",
|
|
50
|
+
"eslint-plugin-depend": "^1.3.1",
|
|
46
51
|
"eslint-plugin-erasable-syntax-only": "^0.3.1",
|
|
47
52
|
"eslint-plugin-vuejs-accessibility": "^2.4.1"
|
|
48
53
|
},
|
|
49
54
|
"devDependencies": {
|
|
50
55
|
"@tsconfig/node22": "^22.0.2",
|
|
51
|
-
"@types/node": "~22.17.
|
|
56
|
+
"@types/node": "~22.17.2",
|
|
52
57
|
"changelogen": "^0.6.2",
|
|
53
|
-
"obuild": "^0.2
|
|
54
|
-
"typescript": "~5.9.
|
|
58
|
+
"obuild": "^0.3.2",
|
|
59
|
+
"typescript": "~5.9.3"
|
|
55
60
|
}
|
|
56
61
|
}
|