Standards are important. Easily enforce them in .js and .vue files.
$ npm i standard eslint-plugin-html --save-dev
Update your package.json
{ "scripts": { "test": "standard --plugin html '**/*.{js,vue}'" } }
You can now run:
$ npm test
Home