Disallow dynamic helper invocations.
Dynamic helper invocations (where the helper name comes from a property or argument) make code harder to understand and can have performance implications. Use explicit helper names instead.
This rule disallows invoking helpers dynamically using this or @ properties.
<template>
{{(this.helper "arg")}}
</template><template>
{{(@helperName "value")}}
</template><template>
{{format-date this.date}}
</template><template>
{{(upper-case this.name)}}
</template><template>
{{this.formattedData}}
</template>{{! Body-position dynamic helpers are allowed }}
<template>
{{this.formatter this.data}}
</template>