Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 675 Bytes

no-input-block.md

File metadata and controls

24 lines (15 loc) · 675 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"}}

References