diff --git a/basic-multi-root-sample/src/extension.ts b/basic-multi-root-sample/src/extension.ts index 7491714c..8f7e13a1 100644 --- a/basic-multi-root-sample/src/extension.ts +++ b/basic-multi-root-sample/src/extension.ts @@ -2,8 +2,6 @@ * Copyright (C) Microsoft Corporation. All rights reserved. *--------------------------------------------------------*/ -'use strict'; - import { ExtensionContext, StatusBarAlignment, window, StatusBarItem, Selection, workspace, TextEditor, commands } from 'vscode'; import { basename } from 'path'; diff --git a/completions-sample/src/extension.ts b/completions-sample/src/extension.ts index 1f9cd397..967e03a4 100644 --- a/completions-sample/src/extension.ts +++ b/completions-sample/src/extension.ts @@ -2,8 +2,6 @@ * Copyright (C) Microsoft Corporation. All rights reserved. *--------------------------------------------------------*/ -'use strict'; - import * as vscode from 'vscode'; export function activate(context: vscode.ExtensionContext) { diff --git a/contentprovider-sample/src/extension.ts b/contentprovider-sample/src/extension.ts index 5b92cc64..ccffa01b 100644 --- a/contentprovider-sample/src/extension.ts +++ b/contentprovider-sample/src/extension.ts @@ -1,7 +1,6 @@ /*--------------------------------------------------------- * Copyright (C) Microsoft Corporation. All rights reserved. *--------------------------------------------------------*/ -'use strict'; import { workspace, languages, window, commands, ExtensionContext, Disposable } from 'vscode'; import ContentProvider, { encodeLocation } from './provider'; diff --git a/contentprovider-sample/src/provider.ts b/contentprovider-sample/src/provider.ts index a3833cae..1cf663af 100644 --- a/contentprovider-sample/src/provider.ts +++ b/contentprovider-sample/src/provider.ts @@ -1,7 +1,6 @@ /*--------------------------------------------------------- * Copyright (C) Microsoft Corporation. All rights reserved. *--------------------------------------------------------*/ -'use strict'; import * as vscode from 'vscode'; import ReferencesDocument from './referencesDocument'; diff --git a/contentprovider-sample/src/referencesDocument.ts b/contentprovider-sample/src/referencesDocument.ts index ee57a83f..bedc8b87 100644 --- a/contentprovider-sample/src/referencesDocument.ts +++ b/contentprovider-sample/src/referencesDocument.ts @@ -1,7 +1,6 @@ /*--------------------------------------------------------- * Copyright (C) Microsoft Corporation. All rights reserved. *--------------------------------------------------------*/ -'use strict'; import * as vscode from 'vscode'; diff --git a/fsprovider-sample/src/fileSystemProvider.ts b/fsprovider-sample/src/fileSystemProvider.ts index d2ab77cd..6866c239 100644 --- a/fsprovider-sample/src/fileSystemProvider.ts +++ b/fsprovider-sample/src/fileSystemProvider.ts @@ -3,7 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ -'use strict'; import * as path from 'path'; import * as vscode from 'vscode'; diff --git a/lsp-log-streaming-sample/client/src/extension.ts b/lsp-log-streaming-sample/client/src/extension.ts index 072c2b88..cfb820c7 100644 --- a/lsp-log-streaming-sample/client/src/extension.ts +++ b/lsp-log-streaming-sample/client/src/extension.ts @@ -2,7 +2,6 @@ * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. * ------------------------------------------------------------------------------------------ */ -'use strict'; import * as path from 'path'; import { workspace, commands, ExtensionContext, OutputChannel } from 'vscode'; diff --git a/lsp-log-streaming-sample/client/src/test/completion.test.ts b/lsp-log-streaming-sample/client/src/test/completion.test.ts index 2cb65642..0b72c412 100644 --- a/lsp-log-streaming-sample/client/src/test/completion.test.ts +++ b/lsp-log-streaming-sample/client/src/test/completion.test.ts @@ -2,7 +2,6 @@ * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. * ------------------------------------------------------------------------------------------ */ -'use strict'; import * as vscode from 'vscode'; import * as assert from 'assert'; diff --git a/lsp-log-streaming-sample/client/src/test/diagnostics.test.ts b/lsp-log-streaming-sample/client/src/test/diagnostics.test.ts index 1eee4990..40922be8 100644 --- a/lsp-log-streaming-sample/client/src/test/diagnostics.test.ts +++ b/lsp-log-streaming-sample/client/src/test/diagnostics.test.ts @@ -2,7 +2,6 @@ * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. * ------------------------------------------------------------------------------------------ */ -'use strict'; import * as vscode from 'vscode' import * as assert from 'assert' diff --git a/lsp-log-streaming-sample/client/src/test/helper.ts b/lsp-log-streaming-sample/client/src/test/helper.ts index 9ae64af2..68405f5b 100644 --- a/lsp-log-streaming-sample/client/src/test/helper.ts +++ b/lsp-log-streaming-sample/client/src/test/helper.ts @@ -2,7 +2,6 @@ * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. * ------------------------------------------------------------------------------------------ */ -'use strict'; import * as vscode from 'vscode'; import * as path from 'path'; diff --git a/lsp-log-streaming-sample/client/src/test/index.ts b/lsp-log-streaming-sample/client/src/test/index.ts index 7fedf55f..03a056e5 100644 --- a/lsp-log-streaming-sample/client/src/test/index.ts +++ b/lsp-log-streaming-sample/client/src/test/index.ts @@ -2,7 +2,6 @@ * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. * ------------------------------------------------------------------------------------------ */ -'use strict'; import * as testRunner from 'vscode/lib/testrunner'; diff --git a/lsp-log-streaming-sample/server/src/server.ts b/lsp-log-streaming-sample/server/src/server.ts index d6fed694..d129a651 100644 --- a/lsp-log-streaming-sample/server/src/server.ts +++ b/lsp-log-streaming-sample/server/src/server.ts @@ -2,7 +2,6 @@ * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. * ------------------------------------------------------------------------------------------ */ -'use strict'; import { createConnection, diff --git a/nodefs-provider-sample/src/extension.ts b/nodefs-provider-sample/src/extension.ts index 84572df4..ba24ed79 100644 --- a/nodefs-provider-sample/src/extension.ts +++ b/nodefs-provider-sample/src/extension.ts @@ -3,7 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. * ------------------------------------------------------------------------------------------ */ -'use strict'; import * as vscode from 'vscode'; import * as fs from 'fs'; import * as path from 'path'; diff --git a/progress-sample/src/extension.ts b/progress-sample/src/extension.ts index dcc0c34c..db3c9880 100644 --- a/progress-sample/src/extension.ts +++ b/progress-sample/src/extension.ts @@ -2,7 +2,6 @@ * Copyright (C) Microsoft Corporation. All rights reserved. *--------------------------------------------------------*/ -'use strict'; import { ExtensionContext, StatusBarAlignment, window, StatusBarItem, Selection, workspace, TextEditor, commands, ProgressLocation } from 'vscode'; diff --git a/quickinput-sample/src/extension.ts b/quickinput-sample/src/extension.ts index 107b6153..f71b66d2 100644 --- a/quickinput-sample/src/extension.ts +++ b/quickinput-sample/src/extension.ts @@ -3,7 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ -'use strict'; import { window, commands, ExtensionContext } from 'vscode'; import { showQuickPick, showInputBox } from './basicInput'; diff --git a/statusbar-sample/src/extension.ts b/statusbar-sample/src/extension.ts index aa4f165d..e06d3771 100644 --- a/statusbar-sample/src/extension.ts +++ b/statusbar-sample/src/extension.ts @@ -2,7 +2,6 @@ * Copyright (C) Microsoft Corporation. All rights reserved. *--------------------------------------------------------*/ -'use strict'; import * as vscode from 'vscode'; diff --git a/vim-sample/src/common.ts b/vim-sample/src/common.ts index 20b761ce..4ae9f4e8 100644 --- a/vim-sample/src/common.ts +++ b/vim-sample/src/common.ts @@ -2,7 +2,6 @@ * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ -'use strict'; import { MotionState, Motion } from './motions'; diff --git a/vim-sample/src/controller.ts b/vim-sample/src/controller.ts index e3bead4a..cd36e110 100644 --- a/vim-sample/src/controller.ts +++ b/vim-sample/src/controller.ts @@ -2,7 +2,6 @@ * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ -'use strict'; import { TextEditorCursorStyle, Position, Range, Selection, TextEditor, TextEditorRevealType, window } from 'vscode'; diff --git a/vim-sample/src/extension.ts b/vim-sample/src/extension.ts index e8084512..9f14ac7b 100644 --- a/vim-sample/src/extension.ts +++ b/vim-sample/src/extension.ts @@ -2,7 +2,6 @@ * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ -'use strict'; import * as vscode from 'vscode'; diff --git a/vim-sample/src/mappings.ts b/vim-sample/src/mappings.ts index a3e81422..fa4add6f 100644 --- a/vim-sample/src/mappings.ts +++ b/vim-sample/src/mappings.ts @@ -2,7 +2,6 @@ * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ -'use strict'; import { TextEditor } from 'vscode'; import { Motion, Motions } from './motions'; diff --git a/vim-sample/src/motions.ts b/vim-sample/src/motions.ts index 42426013..bcb40e4b 100644 --- a/vim-sample/src/motions.ts +++ b/vim-sample/src/motions.ts @@ -2,7 +2,6 @@ * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ -'use strict'; import { Position, TextDocument, window } from 'vscode'; import { Words, WordCharacters } from './words'; diff --git a/vim-sample/src/operators.ts b/vim-sample/src/operators.ts index b4ba8ce9..f0256acb 100644 --- a/vim-sample/src/operators.ts +++ b/vim-sample/src/operators.ts @@ -2,7 +2,6 @@ * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ -'use strict'; import { Position, Selection, Range, TextDocument, TextEditor, TextEditorRevealType } from 'vscode'; import { Motion, Motions } from './motions'; diff --git a/vim-sample/src/words.ts b/vim-sample/src/words.ts index 245e67ef..cceaf594 100644 --- a/vim-sample/src/words.ts +++ b/vim-sample/src/words.ts @@ -2,7 +2,6 @@ * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ -'use strict'; import { Position, TextDocument } from 'vscode'; diff --git a/virtual-document-sample/src/extension.ts b/virtual-document-sample/src/extension.ts index 24f97ea7..adc5703e 100644 --- a/virtual-document-sample/src/extension.ts +++ b/virtual-document-sample/src/extension.ts @@ -2,7 +2,6 @@ * Copyright (C) Microsoft Corporation. All rights reserved. *--------------------------------------------------------*/ -'use strict'; import * as vscode from 'vscode'; import * as cowsay from 'cowsay'; diff --git a/webpack-sample/src/extension.ts b/webpack-sample/src/extension.ts index 6969adfe..3764d7fd 100644 --- a/webpack-sample/src/extension.ts +++ b/webpack-sample/src/extension.ts @@ -2,7 +2,6 @@ * Copyright (C) Microsoft Corporation. All rights reserved. *--------------------------------------------------------*/ -'use strict'; import * as vscode from 'vscode'; import { add } from './math'; diff --git a/webpack-sample/src/math.ts b/webpack-sample/src/math.ts index ee03e1b7..90e7b9d6 100644 --- a/webpack-sample/src/math.ts +++ b/webpack-sample/src/math.ts @@ -2,7 +2,6 @@ * Copyright (C) Microsoft Corporation. All rights reserved. *--------------------------------------------------------*/ -'use strict'; export function add(a: number, b: number): number { return a + b;