Awesome
ember-template-lint-typed-templates 🌬
Based on els-addon-typed-templates and @lifeart/ember-language-server
Require
ember-template-lint >= 3.0
els-addon-typed-templates >= 4.0.2
Install
yarn add -D els-addon-typed-templates
yarn add -D ember-template-lint-typed-templates
// .template-lintrc.js
module.exports = {
plugins: ['ember-template-lint-typed-templates'],
};
Recommended configuration
A recommended configuration is available. To use it, merge the following object to your .template-lintrc.js
file:
// .template-lintrc.js
module.exports = {
plugins: ['ember-template-lint-typed-templates'],
extends: [
'octane', // this comes from ember-template-lint
'ember-template-lint-typed-templates:recommended'
]
};