eslint-plugin-vue
eslint-plugin-vue copied to clipboard
Official ESLint plugin for Vue.js
Resolves #2538
## Summary Add [eslint-typegen](https://github.com/antfu/eslint-typegen) integration to provide TypeScript definitions and IntelliSense for ESLint rule configurations. ## Motivation - Improve developer experience with TypeScript IntelliSense - Provide type safety for ESLint...
Resolves #2758.
**What rule do you want to change?** `vue/attributes-order` **Does this change cause the rule to produce more or fewer warnings?** If the option is enabled (not by default), it'll produce...
## Summary Upgrade ESLint from v8 to v9 to support the latest features and enable [eslint-typegen](https://github.com/antfu/eslint-typegen) integration. ## Motivation - Required for eslint-typegen compatibility (depends on ESLint v9) - Better...
Addresses https://github.com/vuejs/eslint-plugin-vue/pull/2554#discussion_r1764801869
This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically....
This resolves #2661
I updated my lib to v10 and saw some breaking changes... I changed my old "vue/v-on-function-call" ```js 'vue/v-on-function-call': [ 'error', 'never', { ignoreIncludesComment: false } ] ``` But I didn't...
**Please describe what the rule should do:** This rule enforces the presence or absence of specific props for specific Vue components. It helps ensure consistency and adherence to project-specific conventions...