From 3bd93a99a880ab5149060ad6378bc0cfb1b837df Mon Sep 17 00:00:00 2001 From: Conduitry Date: Thu, 6 Jan 2022 15:41:50 -0500 Subject: [PATCH] lint test --- .../unreferenced-variables-each/input.svelte | 32 +++++++++---------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/test/validator/samples/unreferenced-variables-each/input.svelte b/test/validator/samples/unreferenced-variables-each/input.svelte index 1d80a1b249..a96f9189a2 100644 --- a/test/validator/samples/unreferenced-variables-each/input.svelte +++ b/test/validator/samples/unreferenced-variables-each/input.svelte @@ -1,20 +1,20 @@ - - {#each array as default_value_5} - {#each array as { a = default_value_1, b: { b = [default_value_2, default_value_3], c: [c = default_value_4] }, d = default_value_5, e = default_value_6 }} - {a}{b}{c}{d}{e} - {/each} - {/each} - - \ No newline at end of file + + {#each array as default_value_5} + {#each array as { a = default_value_1, b: { b = [default_value_2, default_value_3], c: [c = default_value_4] }, d = default_value_5, e = default_value_6 }} + {a}{b}{c}{d}{e} + {/each} + {/each} + +