@alexlit/config-eslint 101.0.0 → 101.1.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 +6 -6
  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": "101.0.0",
3
+ "version": "101.1.0",
4
4
  "private": false,
5
5
  "description": "Eslint config",
6
6
  "keywords": [
@@ -33,16 +33,16 @@
33
33
  "@eslint/js": "^9.18.0",
34
34
  "@intlify/eslint-plugin-vue-i18n": "^3.2.0",
35
35
  "@stylistic/eslint-plugin": "^2.13.0",
36
- "@tanstack/eslint-plugin-query": "^5.62.16",
37
- "@unocss/eslint-config": "^65.4.0",
36
+ "@tanstack/eslint-plugin-query": "^5.64.2",
37
+ "@unocss/eslint-config": "^65.4.2",
38
38
  "eslint": "9.18.0",
39
39
  "eslint-config-prettier": "^10.0.1",
40
- "eslint-plugin-jsdoc": "^50.6.1",
40
+ "eslint-plugin-jsdoc": "^50.6.2",
41
41
  "eslint-plugin-perfectionist": "^4.6.0",
42
- "eslint-plugin-prettier": "^5.2.2",
42
+ "eslint-plugin-prettier": "^5.2.3",
43
43
  "eslint-plugin-regexp": "^2.7.0",
44
44
  "eslint-plugin-sonarjs": "^3.0.1",
45
- "eslint-plugin-tailwindcss": "^3.17.5",
45
+ "eslint-plugin-tailwindcss": "^3.18.0",
46
46
  "eslint-plugin-unicorn": "^56.0.1",
47
47
  "eslint-plugin-vitest": "^0.5.4",
48
48
  "eslint-plugin-vue": "^9.32.0",
package/plugins/vue.js CHANGED
@@ -67,7 +67,7 @@ export const vue = [
67
67
  'warn',
68
68
  { script: 500, skipBlankLines: true, style: 500, template: 500 },
69
69
  ],
70
- 'vue/new-line-between-multi-line-property': ['error'],
70
+ 'vue/new-line-between-multi-line-property': 'off',
71
71
  'vue/next-tick-style': ['error', 'promise'],
72
72
  'vue/no-child-content': ['error'],
73
73
  'vue/no-console': ['error'],
@@ -98,13 +98,14 @@ export const vue = [
98
98
  'vue/no-restricted-component-options': ['error'],
99
99
  'vue/no-restricted-props': ['error'],
100
100
  'vue/no-root-v-if': ['error'],
101
- 'vue/no-setup-props-reactivity-loss': 'off',
101
+ 'vue/no-setup-props-reactivity-loss': ['error'],
102
102
  'vue/no-static-inline-styles': ['error', { allowBinding: true }],
103
103
  'vue/no-this-in-before-route-enter': ['error'],
104
+ 'vue/no-undef-components': ['error'],
104
105
  'vue/no-unsupported-features': ['error'],
105
106
  'vue/no-unused-components': ['error'],
106
107
  'vue/no-unused-emit-declarations': ['error'],
107
- 'vue/no-unused-refs': 'off',
108
+ 'vue/no-unused-refs': ['error'],
108
109
  'vue/no-use-computed-property-like-method': ['error'],
109
110
  'vue/no-use-v-else-with-v-for': ['warn'],
110
111
  'vue/no-use-v-if-with-v-for': [