diff --git a/README.md b/README.md index 60190e1ace938..18a622d905f5a 100644 --- a/README.md +++ b/README.md @@ -446,6 +446,7 @@ A big thanks to the people that have contributed to this project 🙏❤️: - Emmanuel Ferdman ([@emmanuel-ferdman](https://github.com/emmanuel-ferdman)) — [contributions](https://github.com/gitkraken/vscode-gitlens/commits?author=emmanuel-ferdman) - Jordon Kashanchi ([@jordonkash](https://github.com/JordonKash)) — [contributions](https://github.com/gitkraken/vscode-gitlens/commits?author=jordonkash) - JounQin ([@JounQin](https://github.com/JounQin)) — [contributions](https://github.com/gitkraken/vscode-gitlens/commits?author=JounQin) +- Noritaka Kobayashi ([@noritaka1166](https://github.com/noritaka1166)) — [contributions](https://github.com/gitkraken/vscode-gitlens/commits?author=noritaka1166) Also special thanks to the people that have provided support, testing, brainstorming, etc: diff --git a/src/plus/integrations/providers/utils.ts b/src/plus/integrations/providers/utils.ts index 0ed45a49ff63a..da4a8f856fb8b 100644 --- a/src/plus/integrations/providers/utils.ts +++ b/src/plus/integrations/providers/utils.ts @@ -217,7 +217,6 @@ export function decodeEntityIdentifiersFromGitConfig(str: string): GitConfigEnti ) { debugger; Logger.error('Invalid Jira issue in git config'); - continue; } } diff --git a/src/system/-webview/__tests__/path.test.ts b/src/system/-webview/__tests__/path.test.ts index 41c81085e11e6..16e8c282f8ab0 100644 --- a/src/system/-webview/__tests__/path.test.ts +++ b/src/system/-webview/__tests__/path.test.ts @@ -1,6 +1,6 @@ import * as assert from 'node:assert'; -import { FileType, Uri, workspace } from 'vscode'; -import { isDescendant, isFolderGlobUri, isFolderUri } from '../path'; +import { Uri } from 'vscode'; +import { isDescendant, isFolderGlobUri } from '../path'; suite('Path Test Suite', () => { suite('isDescendant Tests', () => { diff --git a/src/system/-webview/path.ts b/src/system/-webview/path.ts index cadd5366bc3a2..7e201138e572d 100644 --- a/src/system/-webview/path.ts +++ b/src/system/-webview/path.ts @@ -1,5 +1,5 @@ // eslint-disable-next-line @typescript-eslint/no-restricted-imports -import { isAbsolute as _isAbsolute, basename, dirname } from 'path'; +import { basename, dirname } from 'path'; import { FileType, Uri, workspace } from 'vscode'; import { Schemes } from '../../constants'; import { commonBaseIndex, isFolderGlob, normalizePath } from '../path';