This package provides linting rules for HTML templates.
The rules are based on community standards, with a few extra ones specific to Zestia.
npm install --save-dev @zestia/template-lint-config
Add the following to ~/.npmrc
to pull @zestia scoped packages from Github instead of NPM.
@zestia:registry=https://npm.pkg.github.com
//npm.pkg.github.com/:_authToken=<YOUR_GH_TOKEN>
-
Create the following file
.template-lintrc.js
module.exports = { plugins: ['@zestia/template-lint-config'], extends: 'zestia:recommended' };
-
Add the following to
scripts
inpackage.json
"lint:hbs": "ember-template-lint ."
npm run lint:hbs