eslint-config-greenpie 6.2.0 → 6.4.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 +5 -5
  2. package/rules/vue.js +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-greenpie",
3
- "version": "6.2.0",
3
+ "version": "6.4.0",
4
4
  "description": "GreenPie's ESLint config file",
5
5
  "main": "index.js",
6
6
  "author": "Roman Nuritdinov (Ky6uk)",
@@ -33,11 +33,11 @@
33
33
  "vue"
34
34
  ],
35
35
  "peerDependencies": {
36
- "@typescript-eslint/eslint-plugin": "^6.2.0",
37
- "@typescript-eslint/parser": "^6.2.0",
38
- "eslint": "^8.46.0",
36
+ "@typescript-eslint/eslint-plugin": "^6.4.0",
37
+ "@typescript-eslint/parser": "^6.4.0",
38
+ "eslint": "^8.47.0",
39
39
  "eslint-plugin-jest": "^27.2.3",
40
- "eslint-plugin-vue": "^9.16.1"
40
+ "eslint-plugin-vue": "^9.17.0"
41
41
  },
42
42
  "devDependencies": {
43
43
  "eslint": "^8.29.0"
package/rules/vue.js CHANGED
@@ -32,7 +32,6 @@ module.exports = {
32
32
  'vue/no-reserved-component-names': 'error',
33
33
  'vue/no-reserved-keys': 'error',
34
34
  'vue/no-reserved-props': 'error',
35
- 'vue/no-setup-props-destructure': 'error',
36
35
  'vue/no-shared-component-data': 'error',
37
36
  'vue/no-side-effects-in-computed-properties': 'error',
38
37
  'vue/no-template-key': 'error',
@@ -225,7 +224,7 @@ module.exports = {
225
224
  'vue/no-empty-component-block': 'error',
226
225
  'vue/no-multiple-objects-in-class': 'error',
227
226
  'vue/no-potential-component-option-typo': 'error',
228
- 'vue/no-ref-object-destructure': 'error',
227
+ 'vue/no-ref-object-reactivity-loss': 'error',
229
228
  'vue/no-required-prop-with-default': 'error',
230
229
  'vue/no-restricted-block': 'error',
231
230
  'vue/no-restricted-call-after-await': 'error',
@@ -238,6 +237,7 @@ module.exports = {
238
237
  'vue/no-restricted-static-attribute': 'error',
239
238
  'vue/no-restricted-v-bind': 'error',
240
239
  'vue/no-root-v-if': 'error',
240
+ 'vue/no-setup-props-reactivity-loss': 'error',
241
241
  'vue/no-static-inline-styles': 'error',
242
242
  'vue/no-template-target-blank': 'error',
243
243
  'vue/no-this-in-before-route-enter': 'error',