Releases: vuejs/eslint-plugin-vue
Releases · vuejs/eslint-plugin-vue
v7.13.0
✨ Enhancements
- Supports
<script setup>- #1529 Added
vue/script-setup-uses-varsrule that will find variables in<script setup>used in<template>and mark them as used. - #1559 Added
vue/no-export-in-script-setuprule that disallows ES export in<script setup>. - #1560 Added
vue/valid-define-propsrule that reportsdefinePropscompiler macros in the following cases:definePropsare referencing locally declared variables.definePropshas both a literal type and an argument. e.g.defineProps<{/*props*/}>({/*props*/})definePropshas been called multiple times.- Props are defined in both
definePropsandexport default {}. - Props are not defined in either
definePropsorexport default {}.
- #1561 Added
vue/valid-define-emitsrule that reportsdefineEmitscompiler macros in the following cases:defineEmitsare referencing locally declared variables.defineEmitshas both a literal type and an argument. e.g.defineEmits<(e: 'foo')=>void>(['bar'])defineEmitshas been called multiple times.- Custom events are defined in both
defineEmitsandexport default {}. - Custom events are not defined in either
defineEmitsorexport default {}.
- #1532, #1559 Upgraded
vue-eslint-parser. - Updated rules to support
<script setup>.- #1531
vue/no-mutating-propsrule. - #1535
vue/no-reserved-keysrule. - #1533
vue/no-async-in-computed-propertiesrule. - #1534
vue/no-side-effects-in-computed-propertiesrule. - #1536
vue/require-prop-type-constructorrule. - #1539
vue/no-lifecycle-after-awaitrule. - #1538
vue/require-valid-default-proprule. - #1542
vue/return-in-emits-validatorrule. - #1545
vue/require-default-proprule. - #1540
vue/no-setup-props-destructurerule. - #1541
vue/no-watch-after-awaitrule. - #1543
vue/no-template-shadowrule. - #1544
vue/prop-name-casingrule. - #1546
vue/require-prop-typesrule. - #1548
vue/require-explicit-emitsrule. - #1549
vue/custom-event-name-casingrule. - #1550
vue/no-boolean-defaultrule. - #1551
vue/no-restricted-call-after-awaitrule. - #1552
vue/no-restricted-propsrule. - #1553
vue/no-unregistered-componentsrule. - #1554
vue/no-unsupported-featuresrule. - #1555
vue/no-unused-propertiesrule. - #1556
vue/no-unused-refsrule. - #1557
vue/require-emit-validatorrule. - #1558
vue/require-name-propertyrule.
- #1531
- #1529 Added
- #1543 Updated
vue/no-template-shadowrule to supportsetup(). - #1556 Updated
vue/no-unused-refsrule to supportsetup().
🐛 Bug Fixes
- #1527 Changed the indent rule so that the union type has the same indent as the binary expression.
⚙️ Updates
- #1528 Deprecated
vue/experimental-script-setup-varsrule.
All commits: v7.12.1 -> v7.13.0
v7.12.1
v7.12.0
✨ Enhancements
- #1520 Improved
vue/script-indentrule to support TypeScript syntax. - #1481 Improved
vue/script-indentrule andvue/html-indentrule to support ES2022 Class Fields syntax. (When using espree v8+.)
🐛 Bug Fixes
- #1521 Fixed wrong auto-fix in
vue/no-deprecated-slot-attributerule andvue/no-deprecated-slot-scope-attributerule. - #1522 Fixed false positives for default with type Function in
vue/no-deprecated-props-default-thisrule.
⚙️ Updates
- #1481 Supports ES2022 Class Fields. (When using espree v8+.)
All commits: v7.11.1 -> v7.12.0
v7.11.1
v7.11.0
✨ Enhancements
New Rules:
- #1506 Added
vue/no-this-in-before-route-enterrule that disallowthisusage in abeforeRouteEntermethod. - #1510 Added
vue/no-deprecated-v-isrule that disallow deprecatedv-isdirective (in Vue.js 3.1.0+).
Other changes in Rules:
- #1501 Made
vue/no-deprecated-destroyed-lifecyclerule to auto-fixable.
⚙️ Updates
- #1509 Added supports for
is="vue:"(Vue 3.1.0+).
All commits: v7.10.0 -> v7.11.0
v7.10.0
✨ Enhancements
New Rules:
- #1487 Added
vue/require-emit-validatorrule that enforce the validator definition in emits.
Other changes in Rules:
- #1493 Changed
vue/this-in-templaterule to support autofix.
⚙️ Updates
- #1484 Changed
vue/attribute-hyphenationrule to ignore SVG attributes.
All commits: v7.9.0 -> v7.10.0
v7.9.0
✨ Enhancements
New Rules:
- #1466 Added
vue/no-invalid-model-keysrule that disallow invalid model option keys. - #1474 Added
vue/no-unused-refsrule that reports refs that are defined using therefattribute in<template>but are not used via$refs.
Other changes in Rules:
- #1465 Added
singleline.allowFirstLineoption tovue/max-attributes-per-linerule.
🐛 Bug Fixes
- #1469 Fixed false negative in
asexpression forvue/require-valid-default-proprule.
All commits: v7.8.0 -> v7.9.0
v7.8.0
v7.7.0
✨ Enhancements
Changes in Rules:
- #1444 Added
ignorePublicMembersoption tovue/no-unused-propertiesrule.
🐛 Bug Fixes
- #1446 Fixed false negatives for member access with
$invue/this-in-templaterule.
⚙️ Updates
- #1448 Upgrade
vue-eslint-parserto v7.6.0.
This makes the parser to case sensitive to the name used to determine the element when the file is SFC.
All commits: v7.6.0 -> v7.7.0
v7.6.0
✨ Enhancements
New Rules:
Other changes in Rules:
- #1429 Added
"SLOT"option tovue/attributes-orderrule to specifyv-slotorder. - #1430 Changed the option schema for the following rules to be stricter. Incorrect options are reported as errors.
vue/attributes-orderrule.vue/component-tags-orderrule.vue/max-attributes-per-linerule.vue/new-line-between-multi-line-propertyrule.vue/no-bare-strings-in-templaterule.vue/no-duplicate-attributesrule.vue/no-potential-component-option-typorule.vue/no-reserved-component-namesrule.vue/no-use-v-if-with-v-forrule.vue/no-useless-mustachesrule.vue/no-useless-v-bindrule.vue/valid-v-slotrule.
- #1436 Improved autofix of
vue/no-deprecated-slot-attributerule when slot name contains_.
🐛 Bug Fixes
- #1434 Fixed false negatives for
v-bind="object"invue/attributes-orderrule.
⚙️ Updates
- #1440 Upgrade
vue-eslint-parserto v7.5.0.
This change fixes an issue that caused a crash when using some queries withvue/no-restricted-syntaxrule.
All commits: v7.5.0 -> v7.6.0