Lint your embeddable Eta templates with ease
Run npm install --save-dev eslint-plugin-eta
to install this ESLint plugin.
Add this to your ESLint config:
module.exports = {
...
plugins: [
"eta"
],
overrides: [
{
files: ["*.eta"],
processor: "eta/eta"
}
],
...
}