lint: turn on @stylistic/js/semi

This commit is contained in:
Simon Ser 2024-09-29 11:48:45 +02:00
parent b93db7ac0e
commit b9d12bc8cd
5 changed files with 7 additions and 6 deletions

View file

@ -43,7 +43,7 @@ export default function linkify(text, onClick) {
return;
}
const prefix = text.substring(last, match.start)
const prefix = text.substring(last, match.start);
children.push(prefix);
children.push(html`
@ -58,7 +58,7 @@ export default function linkify(text, onClick) {
last = match.end;
});
const suffix = text.substring(last)
const suffix = text.substring(last);
children.push(suffix);
return children;