Skip to content

Commit 3b19a6e

Browse files
ci(lint): auto-fix
1 parent c418bef commit 3b19a6e

File tree

1 file changed

+1
-1
lines changed
  • packages/language-service/lib/plugins

1 file changed

+1
-1
lines changed

packages/language-service/lib/plugins/data.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ function resolveReferences(data: html.HTMLDataV1) {
156156

157157
for (const item of [
158158
...data.globalAttributes ?? [],
159-
...data.tags?.flatMap((tag) => [tag, ...tag.attributes]) ?? [],
159+
...data.tags?.flatMap(tag => [tag, ...tag.attributes]) ?? [],
160160
]) {
161161
if (typeof item.references === 'string') {
162162
const relativeUrl = item.references as string;

0 commit comments

Comments
 (0)