eslint-plugin-vue
eslint-plugin-vue copied to clipboard
Official ESLint plugin for Vue.js
**What rule do you want to change?** `v-for-delimiter-style` **Does this change cause the rule to produce more or fewer warnings?** Without a configuration change, the number won't change. **How will...
**What rule do you want to change?** - `[vue/require-component-is]` **Does this change cause the rule to produce more or fewer warnings?** - fewer **How will the change be implemented? (New...
**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...
**Tell us about your environment** * **ESLint version: "^5.16.0"** * **eslint-plugin-vue version: "^5.0.0"** * **eslint-plugin-prettier version: "^3.1.0"** * **Node version: v10.16.3 ** **Please show your full configuration:** ``` module.exports =...
**Please describe what the rule should do:** Require `:is` does not appear on tags other than `` **What category should the rule belong to?** - [X] Enforces code style -...
**The problem you want to solve.** We need to check for compatibility with ESLint's new Flat Config. **Your take on the correct solution to problem.** When `@eslint/eslintrc` is ready to...
**Please describe what the rule should do:** disallow use v-if on the same element as v-slot **What category should the rule belong to?** - [x] Enforces code style - [x]...
**Tell us about your environment** * **ESLint version: 5.16.0** * **eslint-plugin-vue version: 5.2.2** * **Node version: 12.4.0** **Please show your full configuration:** ``` module.exports = { root: true, env: {...
[Rule proposal] Warn when referencing props without `props.` prefix in functional component template
**Please describe what the rule should do:** When I use functional components with templates, I very often forget to reference props through props object (`props.user` instead of `user`). This leads...
**Tell us about your environment** * **ESLint version:** 5.14.1 * **eslint-plugin-vue version:** 5.2.2 * **Node version:** 10.15.2 **What did you do?** ```vue dummy Test #{{n}} ``` **What did you expect...