@glance-project/dev-config-vue
v1.1.0
Published
General configuration for Vue development purposes
Downloads
2
Keywords
Readme
dev-config
Set of configuration files for developing Vue applications.
Installation
On your Vue application folder
npm i -D @glance-project/dev-config-vue
Setup
For each configuration file, do the following:
import EslintDefaultConfing from '@glance-project/dev-config-vue/.eslint';
module.exports = {
...EslintDefaultConfig,
// Your custom config comes here...
};
Linting on VSCode
- Install ESLint extension
- Add to your workspace
settings.json
{ "eslint.enable": true, "eslint.run": "onType", "eslint.validate": ["javascript", "html", "vue"], }