@dcrtit/eslint-config-vue
v1.4.0
Published
Collection of rules based on eslint-plugin-vue
Downloads
2
Readme
@dcrtit/eslint-config-vue
Collection of rules based on eslint-plugin-vue
.
Installation
Assuming you have eslint
already installed:
npm i eslint-plugin-vue @dcrtit/eslint-config-vue -D
Usage
In your .eslintrc.js
or whatsoever config file just simple extend your existing configuration with provided package:
module.exports = {
extends: [
// ...Other configs
'@dcrtit/eslint-config-vue'
],
rules: [
// Your own rules' overrides, if needed
]
}