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

**.eslintrc.js:** ```js module.exports = { root: true, env: { node: true }, 'extends': [ 'plugin:vue/essential', '@vue/standard', '@vue/typescript' ], rules: { 'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off', 'no-debugger': process.env.NODE_ENV...

feat: typescript
feat: class-component

**What rule do you want to change?** vue/no-unused-properties **Does this change cause the rule to produce more or fewer warnings?** More when `strict: true` **How will the change be implemented?...

enhancement
help wanted

**Checklist** - [x] I have tried restarting my IDE and the issue persists. - [x] I have read the [FAQ](https://eslint.vuejs.org/user-guide/#faq) and my problem is not listed. **Tell us about your...

bug
upstream issue

Dealing with [vue/singleline-html-element-content-newline](https://eslint.vuejs.org/rules/singleline-html-element-content-newline.html) It would be cool if we could enforce this based on the character count of the element, for short ones they look clean on a single line,...

**Checklist** - [x] I have tried restarting my IDE and the issue persists. - [x] I have read the [FAQ](https://eslint.vuejs.org/user-guide/#faq) and my problem is not listed. **Tell us about your...

**Checklist** **Tell us about your environment** "eslint": "^7.25.0", "eslint-plugin-vue": "^7.9.0", Node 14.13.0 Windows 10 **Please show your full configuration:** ... "vue/no-duplicate-attr-inheritance": "warn", ... **What did you do?** 1: @Component export...

feat: typescript
feat: class-component

This part of the valid-v-slot rule that is in 7.0.0-beta.8 is triggered in my code: https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/valid-v-slot.js#L210 Basically, a named slot on anything but a template triggers it, for example: ```html...

in consideration

**Please describe what the rule should do:** I think it is reasonable to be able to append to the default list of ignores in the `vue/singleline-html-element-content-newline` (and multiline) rule in...

### Please describe what the rule should do: From the wiki page: > Make sure that the next function is called exactly once in any given pass through the navigation...

**What rule do you want to change?** vue/new-line-between-multi-line-property **Does this change cause the rule to produce more or fewer warnings?** fewer **How will the change be implemented? (New option, new...

in consideration