vueformulate
You'll first need to install ESLint:
$ npm i eslint --save-dev
Next, install eslint-plugin-vueformulate:
$ npm install eslint-plugin-vueformulate --save-dev
Add vueformulate to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
{
"plugins": [
"vueformulate"
]
}Then configure the rules you want to use under the rules section.
{
"rules": {
"vueformulate/required-type": 2
}
}- Fill in provided rules here