Skip to content

Commit 637ec30

Browse files
committed
lint
1 parent 39076fe commit 637ec30

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/svelte/src/compiler/phases/3-transform/client/transform-client.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ export function client_component(source, analysis, options) {
5252
get before_init() {
5353
/** @type {any[]} */
5454
const a = [];
55-
a.push = () => error(null, 'INTERNAL', 'before_init.push should not be called outside create_block');
55+
a.push = () =>
56+
error(null, 'INTERNAL', 'before_init.push should not be called outside create_block');
5657
return a;
5758
},
5859
get init() {

0 commit comments

Comments
 (0)