@danielwaltz/eslint-config 2.2.1 → 2.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 +29 -0
- package/dist/index.mjs +3 -2
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,35 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
3
|
|
|
4
|
+
## v2.3.0
|
|
5
|
+
|
|
6
|
+
[compare changes](https://github.com/danielwaltz/eslint-config/compare/v2.2.2...v2.3.0)
|
|
7
|
+
|
|
8
|
+
### 🚀 Enhancements
|
|
9
|
+
|
|
10
|
+
- Update sxzz config and add new vue props destructuring rule ([ba14479](https://github.com/danielwaltz/eslint-config/commit/ba14479))
|
|
11
|
+
|
|
12
|
+
### 🏡 Chore
|
|
13
|
+
|
|
14
|
+
- Update node to `v22.15.0` ([a24a01d](https://github.com/danielwaltz/eslint-config/commit/a24a01d))
|
|
15
|
+
|
|
16
|
+
### ❤️ Contributors
|
|
17
|
+
|
|
18
|
+
- Daniel Waltz ([@danielwaltz](https://github.com/danielwaltz))
|
|
19
|
+
|
|
20
|
+
## v2.2.2
|
|
21
|
+
|
|
22
|
+
[compare changes](https://github.com/danielwaltz/eslint-config/compare/v2.2.1...v2.2.2)
|
|
23
|
+
|
|
24
|
+
### 🩹 Fixes
|
|
25
|
+
|
|
26
|
+
- Update default accessibility component names ([6309f09](https://github.com/danielwaltz/eslint-config/commit/6309f09))
|
|
27
|
+
- Update sxzz config ([fb3b808](https://github.com/danielwaltz/eslint-config/commit/fb3b808))
|
|
28
|
+
|
|
29
|
+
### ❤️ Contributors
|
|
30
|
+
|
|
31
|
+
- Daniel Waltz ([@danielwaltz](https://github.com/danielwaltz))
|
|
32
|
+
|
|
4
33
|
## v2.2.1
|
|
5
34
|
|
|
6
35
|
[compare changes](https://github.com/danielwaltz/eslint-config/compare/v2.2.0...v2.2.1)
|
package/dist/index.mjs
CHANGED
|
@@ -65,6 +65,7 @@ function vueConfigs() {
|
|
|
65
65
|
}
|
|
66
66
|
],
|
|
67
67
|
"vue/define-props-declaration": ["error", "type-based"],
|
|
68
|
+
"vue/define-props-destructuring": "error",
|
|
68
69
|
"vue/enforce-style-attribute": ["error", { allow: ["scoped"] }],
|
|
69
70
|
"vue/html-button-has-type": "error",
|
|
70
71
|
"vue/html-comment-content-newline": "error",
|
|
@@ -115,11 +116,11 @@ function vueConfigs() {
|
|
|
115
116
|
// Accessibility
|
|
116
117
|
"vuejs-accessibility/alt-text": [
|
|
117
118
|
"error",
|
|
118
|
-
{ img: ["
|
|
119
|
+
{ img: ["AppImg", "BaseImg", "NuxtImg"] }
|
|
119
120
|
],
|
|
120
121
|
"vuejs-accessibility/anchor-has-content": [
|
|
121
122
|
"error",
|
|
122
|
-
{ components: ["AppLink", "NuxtLink"] }
|
|
123
|
+
{ components: ["AppLink", "BaseLink", "NuxtLink"] }
|
|
123
124
|
]
|
|
124
125
|
}
|
|
125
126
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@danielwaltz/eslint-config",
|
|
3
|
-
"version": "2.
|
|
4
|
-
"packageManager": "pnpm@10.
|
|
3
|
+
"version": "2.3.0",
|
|
4
|
+
"packageManager": "pnpm@10.10.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"eslint-config"
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
"prettier": ">=3"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@sxzz/eslint-config": "^6.
|
|
43
|
+
"@sxzz/eslint-config": "^6.2.0",
|
|
44
44
|
"eslint-flat-config-utils": "^2.0.1",
|
|
45
45
|
"eslint-plugin-erasable-syntax-only": "^0.3.1",
|
|
46
46
|
"eslint-plugin-vuejs-accessibility": "^2.4.1"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@tsconfig/node22": "^22.0.1",
|
|
50
|
-
"@types/node": "~22.
|
|
50
|
+
"@types/node": "~22.15.3",
|
|
51
51
|
"changelogen": "^0.6.1",
|
|
52
52
|
"typescript": "~5.8.3",
|
|
53
53
|
"unbuild": "^3.5.0"
|