@danielwaltz/eslint-config 3.2.2 → 3.3.0
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 +16 -0
- package/dist/index.mjs +4 -3
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,22 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
3
|
|
|
4
|
+
## v3.3.0
|
|
5
|
+
|
|
6
|
+
[compare changes](https://github.com/danielwaltz/eslint-config/compare/v3.2.2...v3.3.0)
|
|
7
|
+
|
|
8
|
+
### 🚀 Enhancements
|
|
9
|
+
|
|
10
|
+
- Update configs ([39e05ab](https://github.com/danielwaltz/eslint-config/commit/39e05ab))
|
|
11
|
+
|
|
12
|
+
### 🔥 Performance
|
|
13
|
+
|
|
14
|
+
- Move filename case regex def to module scope ([f80f624](https://github.com/danielwaltz/eslint-config/commit/f80f624))
|
|
15
|
+
|
|
16
|
+
### ❤️ Contributors
|
|
17
|
+
|
|
18
|
+
- Daniel Waltz ([@danielwaltz](https://github.com/danielwaltz))
|
|
19
|
+
|
|
4
20
|
## v3.2.2
|
|
5
21
|
|
|
6
22
|
[compare changes](https://github.com/danielwaltz/eslint-config/compare/v3.2.1...v3.2.2)
|
package/dist/index.mjs
CHANGED
|
@@ -2,7 +2,7 @@ import { baseline, hasVue, sxzz } from "@sxzz/eslint-config";
|
|
|
2
2
|
import e18e from "@e18e/eslint-plugin";
|
|
3
3
|
import erasableSyntaxOnlyPlugin from "eslint-plugin-erasable-syntax-only";
|
|
4
4
|
import vueA11yPlugin from "eslint-plugin-vuejs-accessibility";
|
|
5
|
-
import { composer
|
|
5
|
+
import { composer, defineFlatConfig } from "eslint-flat-config-utils";
|
|
6
6
|
export * from "@sxzz/eslint-config";
|
|
7
7
|
function e18eConfigs() {
|
|
8
8
|
return [{
|
|
@@ -16,6 +16,7 @@ function typescriptConfigs() {
|
|
|
16
16
|
...erasableSyntaxOnlyPlugin.configs.recommended
|
|
17
17
|
}];
|
|
18
18
|
}
|
|
19
|
+
const FILENAME_CASE_IGNORE_REGEXES = [/^[A-Z]+\..*$/, /import_map\.json/];
|
|
19
20
|
function unicornConfigs() {
|
|
20
21
|
return [{
|
|
21
22
|
name: "danielwaltz/unicorn",
|
|
@@ -25,7 +26,7 @@ function unicornConfigs() {
|
|
|
25
26
|
kebabCase: true,
|
|
26
27
|
pascalCase: true
|
|
27
28
|
},
|
|
28
|
-
ignore:
|
|
29
|
+
ignore: FILENAME_CASE_IGNORE_REGEXES
|
|
29
30
|
}] }
|
|
30
31
|
}];
|
|
31
32
|
}
|
|
@@ -126,7 +127,7 @@ function vueConfigs() {
|
|
|
126
127
|
];
|
|
127
128
|
}
|
|
128
129
|
function defineFlatConfigs(...configs) {
|
|
129
|
-
return composer
|
|
130
|
+
return composer(...configs);
|
|
130
131
|
}
|
|
131
132
|
function danielwaltz(...params) {
|
|
132
133
|
const composer = defineFlatConfigs();
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@danielwaltz/eslint-config",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "3.
|
|
5
|
-
"packageManager": "pnpm@10.
|
|
4
|
+
"version": "3.3.0",
|
|
5
|
+
"packageManager": "pnpm@10.30.1",
|
|
6
6
|
"author": "Daniel Waltz",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"repository": {
|
|
@@ -45,17 +45,17 @@
|
|
|
45
45
|
"prettier": ">=3"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@e18e/eslint-plugin": "^0.
|
|
49
|
-
"@sxzz/eslint-config": "^7.
|
|
50
|
-
"eslint-flat-config-utils": "^3.0.
|
|
48
|
+
"@e18e/eslint-plugin": "^0.2.0",
|
|
49
|
+
"@sxzz/eslint-config": "^7.8.0",
|
|
50
|
+
"eslint-flat-config-utils": "^3.0.1",
|
|
51
51
|
"eslint-plugin-erasable-syntax-only": "^0.4.0",
|
|
52
|
-
"eslint-plugin-vuejs-accessibility": "^2.
|
|
52
|
+
"eslint-plugin-vuejs-accessibility": "^2.5.0"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@tsconfig/node24": "^24.0.4",
|
|
56
|
-
"@types/node": "~24.10.
|
|
56
|
+
"@types/node": "~24.10.13",
|
|
57
57
|
"changelogen": "^0.6.2",
|
|
58
|
-
"obuild": "^0.4.
|
|
58
|
+
"obuild": "^0.4.31",
|
|
59
59
|
"typescript": "~5.9.3"
|
|
60
60
|
}
|
|
61
61
|
}
|