@alexlit/config-eslint 72.3.0 → 72.5.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.
Files changed (2) hide show
  1. package/package.json +8 -8
  2. package/plugins/vue.js +4 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alexlit/config-eslint",
3
- "version": "72.3.0",
3
+ "version": "72.5.0",
4
4
  "private": false,
5
5
  "description": "Eslint config",
6
6
  "keywords": [
@@ -34,12 +34,12 @@
34
34
  },
35
35
  "dependencies": {
36
36
  "@intlify/eslint-plugin-vue-i18n": "^2.0.0",
37
- "@tanstack/eslint-plugin-query": "^5.10.0",
38
- "@typescript-eslint/eslint-plugin": "^6.13.1",
39
- "@typescript-eslint/parser": "^6.13.1",
40
- "eslint": "^8.54.0",
37
+ "@tanstack/eslint-plugin-query": "^5.12.1",
38
+ "@typescript-eslint/eslint-plugin": "^6.13.2",
39
+ "@typescript-eslint/parser": "^6.13.2",
40
+ "eslint": "^8.55.0",
41
41
  "eslint-config-airbnb-base": "^15.0.0",
42
- "eslint-config-prettier": "^9.0.0",
42
+ "eslint-config-prettier": "^9.1.0",
43
43
  "eslint-define-config": "^2.0.0",
44
44
  "eslint-import-resolver-alias": "^1.1.2",
45
45
  "eslint-plugin-array-func": "^4.0.0",
@@ -64,7 +64,7 @@
64
64
  "eslint-plugin-node": "^11.1.0",
65
65
  "eslint-plugin-prettier": "^5.0.1",
66
66
  "eslint-plugin-promise": "^6.1.1",
67
- "eslint-plugin-regexp": "^2.1.1",
67
+ "eslint-plugin-regexp": "^2.1.2",
68
68
  "eslint-plugin-security": "^1.7.1",
69
69
  "eslint-plugin-simple-import-sort": "^10.0.0",
70
70
  "eslint-plugin-sonarjs": "^0.23.0",
@@ -78,7 +78,7 @@
78
78
  "eslint-plugin-unicorn": "^49.0.0",
79
79
  "eslint-plugin-unused-imports": "^3.0.0",
80
80
  "eslint-plugin-vitest": "^0.3.10",
81
- "eslint-plugin-vue": "^9.18.1",
81
+ "eslint-plugin-vue": "^9.19.2",
82
82
  "eslint-plugin-vuejs-accessibility": "^2.2.0",
83
83
  "eslint-plugin-wc": "^2.0.4",
84
84
  "eslint-plugin-write-good-comments": "^0.2.0",
package/plugins/vue.js CHANGED
@@ -63,9 +63,7 @@ module.exports = {
63
63
  'vue/define-props-declaration': ['error'],
64
64
 
65
65
  'vue/dot-notation': ['error'],
66
-
67
66
  'vue/eqeqeq': ['error'],
68
-
69
67
  'vue/html-button-has-type': ['error'],
70
68
 
71
69
  'vue/html-comment-content-newline': ['warn'],
@@ -77,7 +75,6 @@ module.exports = {
77
75
  'vue/html-end-tags': ['error'],
78
76
 
79
77
  // 'vue/html-self-closing': [], // delegate to plugins/prettier
80
-
81
78
  'vue/match-component-file-name': ['error'],
82
79
 
83
80
  'vue/match-component-import-name': ['error'],
@@ -168,6 +165,8 @@ module.exports = {
168
165
 
169
166
  'vue/no-unused-components': ['error'],
170
167
 
168
+ 'vue/no-unused-emit-declarations': ['error'],
169
+
171
170
  'vue/no-unused-refs': 'off',
172
171
 
173
172
  'vue/no-use-computed-property-like-method': ['error'],
@@ -253,6 +252,8 @@ module.exports = {
253
252
 
254
253
  'vue/v-for-delimiter-style': ['error'],
255
254
 
255
+ 'vue/v-if-else-key': ['error'],
256
+
256
257
  'vue/v-on-event-hyphenation': ['error'],
257
258
 
258
259
  'vue/v-on-handler-style': ['error', 'inline-function'],