mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-22 01:29:04 +01:00
Git - enable ESLint rule for git extensions (#277156)
* Initial commit with all exceptions * First pass of fixing * Add ignored files explicitly
This commit is contained in:
@@ -29,9 +29,9 @@ import { GitCommitInputBoxCodeActionsProvider, GitCommitInputBoxDiagnosticsManag
|
||||
import { GitBlameController } from './blame';
|
||||
import { CloneManager } from './cloneManager';
|
||||
|
||||
const deactivateTasks: { (): Promise<any> }[] = [];
|
||||
const deactivateTasks: { (): Promise<void> }[] = [];
|
||||
|
||||
export async function deactivate(): Promise<any> {
|
||||
export async function deactivate(): Promise<void> {
|
||||
for (const task of deactivateTasks) {
|
||||
await task();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user