Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fisker/eslint-plugin-vue-enhanced
Extra rules for vue projects
https://github.com/fisker/eslint-plugin-vue-enhanced
Last synced: 6 days ago
JSON representation
Extra rules for vue projects
- Host: GitHub
- URL: https://github.com/fisker/eslint-plugin-vue-enhanced
- Owner: fisker
- License: mit
- Created: 2021-06-18T07:53:50.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-04-08T06:06:50.000Z (7 months ago)
- Last Synced: 2024-04-08T07:26:48.160Z (7 months ago)
- Language: JavaScript
- Size: 162 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 50
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
README
# eslint-plugin-vue-enhanced
> ESLint plugins for Vue.
## Installation
```bash
yarn add eslint-plugin-vue-enhanced --dev
```## Usage
Add this to your `.eslintrc.js`
```js
module.exports = {
extends: ['plugin:vue-enhanced/recommended'],
}
```## Rules
- [`no-v-show`](./docs/no-v-show.md) - Prefer `hidden` attribute over `v-show` directive.