lint: turn on @stylistic/js/semi
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user