template-lint icon indicating copy to clipboard operation
template-lint copied to clipboard

Support defered local check

Open MeirionHughes opened this issue 7 years ago • 0 comments

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

MeirionHughes avatar Oct 05 '16 09:10 MeirionHughes