@danielwaltz/eslint-config 2.3.0 → 2.3.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 +16 -0
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,22 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
3
|
|
|
4
|
+
## v2.3.1
|
|
5
|
+
|
|
6
|
+
[compare changes](https://github.com/danielwaltz/eslint-config/compare/v2.3.0...v2.3.1)
|
|
7
|
+
|
|
8
|
+
### 🩹 Fixes
|
|
9
|
+
|
|
10
|
+
- Disable problematic vue rules ([b98be06](https://github.com/danielwaltz/eslint-config/commit/b98be06))
|
|
11
|
+
|
|
12
|
+
### 🏡 Chore
|
|
13
|
+
|
|
14
|
+
- Bump lockfile ([020240d](https://github.com/danielwaltz/eslint-config/commit/020240d))
|
|
15
|
+
|
|
16
|
+
### ❤️ Contributors
|
|
17
|
+
|
|
18
|
+
- Daniel Waltz ([@danielwaltz](https://github.com/danielwaltz))
|
|
19
|
+
|
|
4
20
|
## v2.3.0
|
|
5
21
|
|
|
6
22
|
[compare changes](https://github.com/danielwaltz/eslint-config/compare/v2.2.2...v2.3.0)
|
package/dist/index.mjs
CHANGED
|
@@ -65,7 +65,7 @@ function vueConfigs() {
|
|
|
65
65
|
}
|
|
66
66
|
],
|
|
67
67
|
"vue/define-props-declaration": ["error", "type-based"],
|
|
68
|
-
"vue/define-props-destructuring": "error",
|
|
68
|
+
// "vue/define-props-destructuring": "error",
|
|
69
69
|
"vue/enforce-style-attribute": ["error", { allow: ["scoped"] }],
|
|
70
70
|
"vue/html-button-has-type": "error",
|
|
71
71
|
"vue/html-comment-content-newline": "error",
|
|
@@ -112,7 +112,7 @@ function vueConfigs() {
|
|
|
112
112
|
{ sameNameShorthand: "always" }
|
|
113
113
|
],
|
|
114
114
|
"vue/v-for-delimiter-style": "error",
|
|
115
|
-
"vue/v-on-handler-style": ["error", ["method", "inline"]],
|
|
115
|
+
// "vue/v-on-handler-style": ["error", ["method", "inline"]],
|
|
116
116
|
// Accessibility
|
|
117
117
|
"vuejs-accessibility/alt-text": [
|
|
118
118
|
"error",
|