1.0.3 • Published 5 years ago

@wimmar/eslint-config-vue v1.0.3

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

Vue-eslint-setup

ESlint & Prettier & Babel setup, for use with Vue CLI 3.

Features

  • Lint javascript
  • Fixes formatting errors
  • Auto remove comments in production code

Usage

  • Installation:
npx install-peerdeps --dev @wimmar/eslint-config-vue
  • Add to your .eslintrc.js:
module.exports = {
  "extends": [
    "@wimmar/eslint-config-vue"
  ]
}
  • Package.json scripts:
"scripts": {
  "lint": "vue-cli-service lint"
},