I have an Angular template that needs to call function by passing an index. There is a Codelyzer rule "template-no-call-expression" that complains when I do this.
I have attempted to disable the rule in the typescript file, but it continues to fail the lint check. Is this a bug, or am I not doing it correctly?
/* tslint:disable: template-no-call-expression */
@Component({
...