aurelia / template-lint

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

Support defered local check #125

Open MeirionHughes opened 8 years ago

MeirionHughes commented 8 years ago

Aurelia allows binding to locals that may not exist initially.

example (ref):

<template> 
  <div>
     ${someName.attributes['expanded'].value}
  </div>

   <button ref=someName></button>
<template>

currently this will throw an error that someName is missing from Foo.

requires #106, two-pass support