angular_analyzer_plugin
angular_analyzer_plugin copied to clipboard
Lint usage of element references in inputs
This is probably a Bad Idea(TM) in general, and could be a great case for a lint.
<input #ref />
<pretty-print [val]="ref.value">
This type of thing could quite easily create infinite loops, and indicates that the template is being used for state instead of the component.