Skip to content

Commit 36def5e

Browse files
committed
lint
1 parent 0c04048 commit 36def5e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/site-kit/src/lib/codemirror/autocompletionDataProvider.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -580,7 +580,7 @@ const is_props_id_call = (node, context, selected) => {
580580
if (!is_state_call(node, context, selected)) return false;
581581
if (node.parent?.parent?.name !== 'Script') return false;
582582
return true;
583-
}
583+
};
584584

585585
/**
586586
* @type {import("./types").Test}
@@ -589,7 +589,7 @@ const is_props_id = (node, context, selected) => {
589589
if (!is_state(node, context, selected)) return false;
590590
if (node.parent?.parent?.name !== 'Script') return false;
591591
return true;
592-
}
592+
};
593593

594594
export const runes = [
595595
{ snippet: '$state(${})', test: is_state },

0 commit comments

Comments
 (0)