Socket
Socket
Sign inDemoInstall

eslint-plugin-vue

Package Overview
Dependencies
Maintainers
1
Versions
170
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-vue - npm Package Compare versions

Comparing version 0.1.1 to 1.0.0

index.js

53

package.json
{
"name": "eslint-plugin-vue",
"version": "0.1.1",
"description": "eslint plugin for vue components (.vue files)",
"version": "1.0.0",
"description": "eslint plugin for vue.js projects",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/eslint-plugin-vue.git"
},
"keywords": [
"eslint",
"plugin",
"eslint-plugin",
"eslintplugin",
"eslint-plugin",
"vue",
"linter"
"vue"
],
"author": "Twiknight",
"main": "lib/index.js",
"scripts": {
"test": "mocha"
"author": "Evan You",
"license": "MIT",
"bugs": {
"url": "https://github.com/vuejs/eslint-plugin-vue/issues"
},
"dependencies": {
"parse5": "^2.1.5"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^2.4.0",
"eslint-config-standard": "^5.1.0",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-standard": "^1.3.2",
"mocha": "^2.4.5"
},
"homepage": "https://github.com/vuejs/eslint-plugin-vue#readme",
"peerDependencies": {
"eslint": ">=2.0.0"
"eslint": "^2.0.0 || ^3.0.0"
},
"engines": {
"node": ">=4.0.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Twiknight/eslint-plugin-vue.git"
},
"bugs": {
"url": "https://github.com/Twiknight/eslint-plugin-vue/issues"
},
"homepage": "https://github.com/Twiknight/eslint-plugin-vue/"
"dependencies": {
"eslint-plugin-html": "^1.5.2",
"eslint-plugin-react": "^6.2.0"
}
}
# eslint-plugin-vue
eslint plugin for vue component files (I mean, `.vue` files).
ESLint plugin for Vue.js projects
## 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:
1. `npm install --save-dev eslint-config-vue eslint-plugin-vue`
2. create a file named `.eslintrc` in your project:
```json
```js
{
"plugins": [
"vue"
]
"extends": "vue"
// Your overrides...
}

@@ -35,2 +19,2 @@ ```

MIT
[MIT](http://opensource.org/licenses/MIT)

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc