Skip to content

Commit 0b42d55

Browse files
committed
resolve
1 parent 0bbad48 commit 0b42d55

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

packages/eslint-plugin-svelte/src/rules/require-each-key.ts

-4
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,7 @@ export default createRule('require-each-key', {
1515
create(context) {
1616
return {
1717
SvelteEachBlock(node: AST.SvelteEachBlock) {
18-
<<<<<<< HEAD
1918
// NO need a `key` if an each blocks without an item
20-
=======
21-
// No need a `key` if an each blocks without an item
22-
>>>>>>> origin/main
2319
// see: https://svelte.dev/docs/svelte/each#Each-blocks-without-an-item
2420
if (node.context != null && node.key == null) {
2521
context.report({

0 commit comments

Comments
 (0)