We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbc318e commit 750affeCopy full SHA for 750affe
packages/eslint-plugin-svelte/src/rules/require-each-key.ts
@@ -15,7 +15,7 @@ export default createRule('require-each-key', {
15
create(context) {
16
return {
17
SvelteEachBlock(node: AST.SvelteEachBlock) {
18
- // NO need a `key` if an each blocks without an item
+ // No need a `key` if an each blocks without an item
19
// see: https://svelte.dev/docs/svelte/each#Each-blocks-without-an-item
20
if (node.context != null && node.key == null) {
21
context.report({
0 commit comments