eslint-plugin-vue icon indicating copy to clipboard operation
eslint-plugin-vue copied to clipboard

Official ESLint plugin for Vue.js

Results 347 eslint-plugin-vue issues
Sort by recently updated
recently updated
newest added

## 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...

**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....

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...