From sveltejs/eslint-plugin-svelte3#37
Something like
{#each foo as bar, i (i)}hey{/each}
produces an erroneous warning that i is not defined. The key seems to be created correctly from the each block's ctx.i - there's just an incorrect warning from the compiler about it.
From sveltejs/eslint-plugin-svelte3#37
Something like
{#each foo as bar, i (i)}hey{/each}produces an erroneous warning that
iis not defined. The key seems to be created correctly from the each block'sctx.i- there's just an incorrect warning from the compiler about it.