43081j / eslint-plugin-lit

lit-html support for ESLint
116 stars 21 forks source link

quoted-expressions rule overmatches non-attribute bindings #153

Closed 43081j closed 1 year ago

43081j commented 1 year ago

we need to update the rule to check for =" rather than just the quotes, otherwise we match things like this:

html`
  <p>Hello there, '${expr}'!</p>
`;