Skip to content

Commit

Permalink
General prettier ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
VenelinBakalov committed Jul 4, 2024
1 parent e45327d commit ff56027
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ class HintStore<T> {
}

/* eslint-disable @typescript-eslint/ban-ts-comment */
/* eslint-disable prettier/prettier */
@AutoWire
export class HintLookup implements Disposable {
private readonly logger = Logger.get("HintLookup")
Expand Down Expand Up @@ -114,8 +115,8 @@ export class HintLookup implements Disposable {
}

const localCategories = workspaceFolder
// @ts-ignore eslint-disable-line
? _.flatMap(this.configs.local[workspaceFolder.uri.fsPath], pack => pack.categories) // eslint-disable-line
// @ts-ignore
? _.flatMap(this.configs.local[workspaceFolder.uri.fsPath], pack => pack.categories)
: []
const globalCategories = _.flatMap(this.configs.global, pack => pack.categories)
return _.unionWith(localCategories, globalCategories, (x, y) => x.path === y.path)
Expand Down

0 comments on commit ff56027

Please sign in to comment.