Skip to content

Commit 1029b17

Browse files
committed
Fix lint
1 parent 6172b14 commit 1029b17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/src/model/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1075,7 +1075,7 @@ export function parseJsDocTags (jsDoc: JSDoc[]): Record<string, string> {
10751075
}
10761076
})
10771077
// Ignore UpdateForV10 which is only useful at the eslint level
1078-
const filteredTags = tags.filter(tag => tag.name != 'UpdateForV10')
1078+
const filteredTags = tags.filter(tag => tag.name !== 'UpdateForV10')
10791079
const mapped = filteredTags.reduce((acc, curr) => ({ ...acc, [curr.name]: curr.value }), {})
10801080
return mapped
10811081
}

0 commit comments

Comments
 (0)