[Vuejs]-Npm script for automatic linting failed

1👍

Remove && and that should work. Make the command vue-cli-service lint only Vue CLI directory for .vue and .js. The resulting definition is:

"lint": "eslint --fix vue/**/*.vue vue/**/*.js"

Leave a comment