aurelia / template-lint

Sanity check of Aurelia-flavor template HTML
Apache License 2.0
56 stars 17 forks source link

Catch usages of "this" in bindings #182

Open JoshMcCullough opened 6 years ago

JoshMcCullough commented 6 years ago

Either by copy/paste or unintentional manual entry, I've caught myself a few times doing something like this...

<a href.bind="this.something.url">...</a>
              ^^^^

... instead of ...

<a href.bind="something.url">...</a>

It'd be great if the linter could find instances of this within bindings and throw a warning.