From 4d167c3cdde34d5d488a621b5eaf701834e62d68 Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Thu, 20 Jul 2017 22:19:58 +0200 Subject: [PATCH] Fixes lint issues --- src/extension.ts | 2 +- src/views/explorerNode.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/extension.ts b/src/extension.ts index 924e969..e2c1a9e 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -5,7 +5,7 @@ import { AnnotationController } from './annotations/annotationController'; import { CloseUnchangedFilesCommand, OpenChangedFilesCommand } from './commands'; import { OpenBranchInRemoteCommand, OpenCommitInRemoteCommand, OpenFileInRemoteCommand, OpenInRemoteCommand, OpenRepoInRemoteCommand } from './commands'; import { CopyMessageToClipboardCommand, CopyShaToClipboardCommand } from './commands'; -import { DiffDirectoryCommand, DiffLineWithPreviousCommand, DiffLineWithWorkingCommand, DiffWithBranchCommand, DiffWithNextCommand, DiffWithPreviousCommand, DiffWithRevisionCommand, DiffWithWorkingCommand} from './commands'; +import { DiffDirectoryCommand, DiffLineWithPreviousCommand, DiffLineWithWorkingCommand, DiffWithBranchCommand, DiffWithNextCommand, DiffWithPreviousCommand, DiffWithRevisionCommand, DiffWithWorkingCommand } from './commands'; import { ResetSuppressedWarningsCommand } from './commands'; import { ShowFileBlameCommand, ShowLineBlameCommand, ToggleFileBlameCommand, ToggleFileRecentChangesCommand, ToggleLineBlameCommand } from './commands'; import { ShowBlameHistoryCommand, ShowFileHistoryCommand } from './commands'; diff --git a/src/views/explorerNode.ts b/src/views/explorerNode.ts index f0fb445..3ea1295 100644 --- a/src/views/explorerNode.ts +++ b/src/views/explorerNode.ts @@ -1,5 +1,5 @@ 'use strict'; -import { Command, Event, ExtensionContext, TreeItem} from 'vscode'; +import { Command, Event, ExtensionContext, TreeItem } from 'vscode'; import { GitService, GitUri } from '../gitService'; export declare type ResourceType = 'status' | 'branches' | 'repository' | 'branch-history' | 'file-history' | 'stash-history' | 'commit' | 'stash-commit' | 'commit-file';