Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/avdeev/eslint-plugin-no-vue
This is an ESLint plugin to disable Vue.js.
https://github.com/avdeev/eslint-plugin-no-vue
eslint eslint-plugin vuejs
Last synced: 25 days ago
JSON representation
This is an ESLint plugin to disable Vue.js.
- Host: GitHub
- URL: https://github.com/avdeev/eslint-plugin-no-vue
- Owner: avdeev
- License: wtfpl
- Created: 2019-09-25T16:21:57.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-02-20T10:17:36.000Z (over 4 years ago)
- Last Synced: 2024-09-17T18:06:34.239Z (about 2 months ago)
- Topics: eslint, eslint-plugin, vuejs
- Language: JavaScript
- Homepage:
- Size: 28.3 KB
- Stars: 8
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# eslint-plugin-no-vue
[![npm](https://img.shields.io/npm/v/eslint-plugin-no-vue.svg)](https://www.npmjs.com/package/eslint-plugin-no-vue)
[![npm](https://img.shields.io/npm/dm/eslint-plugin-no-vue.svg)](https://www.npmjs.com/package/eslint-plugin-no-vue)This is an ESLint plugin to disable Vue.js.
![](demo.png)
## Installing
`npm install eslint-plugin-no-vue --save-dev`
## ESLint Rules
### no-vue
Don't even try it!
## Sample Configuration File
Here's a sample ESLint configuration file that activates these rules:
```
{
"plugins": [
"no-vue"
],
"rules": {
"no-vue/no-vue": "error",
}
}
```## Credits
Inspired by https://github.com/shitjs/eslint-plugin-no-js