terrierscript / eslint-plugin-vue-stronger

0 stars 0 forks source link

eslint-plugin-vue-stronger

Strong rule for vue.js

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install eslint-plugin-vue-stronger:

$ npm install eslint-plugin-vue-stronger --save-dev

Note: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-vue-stronger globally.

Usage

Add vue-stronger to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:

{
    "plugins": [
        "vue-stronger"
    ]
}

Then configure the rules you want to use under the rules section.

{
    "rules": {
        "vue-stronger/rule-name": 2
    }
}

Supported Rules