Skip to content

Commit

Permalink
ci(lint): auto-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Dec 18, 2024
1 parent c418bef commit 3b19a6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/language-service/lib/plugins/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ function resolveReferences(data: html.HTMLDataV1) {

for (const item of [
...data.globalAttributes ?? [],
...data.tags?.flatMap((tag) => [tag, ...tag.attributes]) ?? [],
...data.tags?.flatMap(tag => [tag, ...tag.attributes]) ?? [],
]) {
if (typeof item.references === 'string') {
const relativeUrl = item.references as string;
Expand Down

0 comments on commit 3b19a6e

Please sign in to comment.