Use of the block form of the handlebars input helper will result in an error at runtime.
This rule forbids the following:
<template>{{#input}}Some Content{{/input}}</template>This rule allows the following:
<template>{{input type='text' value=this.firstName disabled=this.entryNotAllowed size='50'}}</template>