no-input-block.md

January 12, 2019 ยท View on GitHub

no-input-block

Use of the block form of the handlebars input helper will result in an error at runtime.

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"}}