Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Twiknight/eslint-plugin-vue
Eslint plugin for vue components (.vue files)
https://github.com/Twiknight/eslint-plugin-vue
Last synced: 16 days ago
JSON representation
Eslint plugin for vue components (.vue files)
- Host: GitHub
- URL: https://github.com/Twiknight/eslint-plugin-vue
- Owner: Twiknight
- License: mit
- Created: 2016-03-20T09:23:58.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-11-17T02:34:10.000Z (almost 8 years ago)
- Last Synced: 2024-08-01T00:39:09.593Z (3 months ago)
- Language: JavaScript
- Size: 7.81 KB
- Stars: 46
- Watchers: 2
- Forks: 3
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: license
Awesome Lists containing this project
- awesome-vue-cn - eslint-plugin-vue ★21 - Eslint plugin for .vue files. (Awesome Vue.js [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome) / Development Tools)
- awesome-vuejs - eslint-plugin-vue - Eslint plugin for .vue files. (Awesome Vue.js / Development Tools)
README
# DEPRECATED!
This project is deprecated and no longer maintained!
Please use the official linter: [https://github.com/vuejs/eslint-plugin-vue](https://github.com/vuejs/eslint-plugin-vue)
# eslint-plugin-vue
eslint plugin for vue component files (I mean, `.vue` files).
## Installation
You'll first need to install [ESLint](http://eslint.org):
```
$ npm i eslint --save-dev
```Next, install `eslint-plugin-vue`:
```
$ npm install eslint-plugin-vue --save-dev
```**Note:** If you installed ESLint globally (using the `-g` flag) then you must also install `eslint-plugin-vue` globally.
## Usage
Add `vue` to the plugins section of your `.eslintrc` configuration file. You can omit the `eslint-plugin-` prefix:
```json
{
"plugins": [
"vue"
]
}
```## License
MIT