fix: lint

This commit is contained in:
imccyu
2026-07-14 23:44:48 +08:00
parent c67c3d9413
commit b734567cc0
2 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -175,7 +175,7 @@ class ScopedEventGenerator {
})
}
}
ts.forEachChild(node, child => { visit(sourceFile, child) })
ts.forEachChild(node, (child) => { visit(sourceFile, child) })
}
for (const sourceFile of this.packageSources) visit(sourceFile, sourceFile)
return contracts
@@ -264,7 +264,7 @@ class ScopedEventGenerator {
scopedBase: ts.Type,
contracts: readonly ScopeTargetContract[],
): ts.Type | undefined {
const matches = contracts.filter(contract => {
const matches = contracts.filter((contract) => {
return this.checker.isTypeAssignableTo(this.normalizedType(contract.baseType), this.normalizedType(scopedBase))
})
if (matches.length === 0) {