ember/template-no-input-block
April 20, 2026 ยท View on GitHub
๐ผ This rule is enabled in the ๐ template-lint-migration config.
HBS Only: This rule applies to classic
.hbstemplate files only (loose mode). It is not relevant forgjs/gtsfiles (strict mode), where these patterns cannot occur.
Use of the block form of the handlebars input helper will result in an error at runtime.
Examples
This rule forbids the following:
{{#input}}Some Content{{/input}}
This rule allows the following:
{{input type='text' value=this.firstName disabled=this.entryNotAllowed size='50'}}