Open LoicMahieu opened 2 months ago
I would like to lint HTML code that is stored directly in like this:
const someView = `<div>Hello</div>`;
Prettier supports this by using a html tag:
html
const someView = html`<div>Hello</div>`;
It works pretty well but eslint does not seems to support it.
Duplicate of #196
I would like to lint HTML code that is stored directly in like this:
Prettier supports this by using a
html
tag:It works pretty well but eslint does not seems to support it.