Skip to content

Commit

Permalink
ts ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
VenelinBakalov committed Jul 4, 2024
1 parent fc624bb commit 0bd660b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ export class HintLookup implements Disposable {
}

const localCategories = workspaceFolder
// @ts-ignore
? _.flatMap(this.configs.local[workspaceFolder.uri.fsPath], pack => pack.categories)
: []
const globalCategories = _.flatMap(this.configs.global, pack => pack.categories)
Expand Down Expand Up @@ -246,6 +247,7 @@ export class HintLookup implements Disposable {
if (!scope) {
target.global = result
} else {
// @ts-ignore
target.local[scope.uri.fsPath] = result
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,8 @@ export class ServerCollection {
} catch (error) {
this.logger.error(error)
}

// @ts-ignore
const plugins: HintPlugin[] = objects["plugins"]
const allObjects: vmw.pscoe.hints.IClass[] = []
const regex = new RegExp(/\/plugins\/([a-zA-Z0-9\_\-\.\/]+)/)
Expand Down

0 comments on commit 0bd660b

Please sign in to comment.