Skip to content

Commit

Permalink
Fight with es lint
Browse files Browse the repository at this point in the history
  • Loading branch information
VenelinBakalov committed Jul 4, 2024
1 parent 40d0165 commit 95927d1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,9 @@ export class HintLookup implements Disposable {
return []
}

const localCategories = workspaceFolder
const localCategories = workspaceFolder ?

Check failure on line 116 in packages/node/vro-language-server/src/server/core/HintLookup.ts

View workflow job for this annotation

GitHub Actions / Build and Release

Delete `·?`
// @ts-ignore

Check failure on line 117 in packages/node/vro-language-server/src/server/core/HintLookup.ts

View workflow job for this annotation

GitHub Actions / Build and Release

Insert `?·`
? _.flatMap(this.configs.local[workspaceFolder.uri.fsPath], pack => pack.categories)
_.flatMap(this.configs.local[workspaceFolder.uri.fsPath], pack => pack.categories)

Check failure on line 118 in packages/node/vro-language-server/src/server/core/HintLookup.ts

View workflow job for this annotation

GitHub Actions / Build and Release

Insert `··`
: []
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 95927d1

Please sign in to comment.