Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 438 Bytes

no-input-block.md

File metadata and controls

19 lines (12 loc) · 438 Bytes

no-input-block

✅ The extends: 'recommended' property in a configuration file enables this rule.

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