lint: turn on @stylistic/js/semi
This commit is contained in:
parent
b93db7ac0e
commit
b9d12bc8cd
5 changed files with 7 additions and 6 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue