It uses Prettier to lint your handlebars templates with ember-template-lint. The plugin defines a - single - rule. That rule will compare your code with Prettier's output.
Here is an output example:
- Node.js
^16.0.0 || ^18.0.0 || >=20.0.0
- ember-template-lint
>=4.0.0
- prettier
>=3.0.0
Note: ember-template-lint-plugin-prettier@4 is compatible with older versions of prettier, in particular prettier@2.
Note2: ember-template-lint-plugin-prettier@3 is compatible with older versions of ember-template-lint, in particular ember-template-lint@3.
yarn add -D prettier ember-template-lint-plugin-prettier
As peerDependencies, prettier
and ember-template-lint
will have to be installed in your project. Prettier version local to the project will be used (not any global one!).
A recommended configuration is available. To use it, merge the following object
to your .template-lintrc.js
file:
module.exports = {
plugins: ["ember-template-lint-plugin-prettier"],
extends: ["recommended", "ember-template-lint-plugin-prettier:recommended"]
};
The recommended set will apply these rules.
Prettier can be configured via standard prettier config files.
This plugin has been inspired by the prettier plugin for Eslint.
See CONTRIBUTING.md