From ffcd4f5f9c05e86fa85feff0b8d124d5da878118 Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Wed, 24 Oct 2018 15:19:39 +0200 Subject: [PATCH] no more 'use strict' --- .vscode/shared.code-snippets | 23 ++--------------------- 1 file changed, 2 insertions(+), 21 deletions(-) diff --git a/.vscode/shared.code-snippets b/.vscode/shared.code-snippets index 7ea5b3c14dc..6ff336abce8 100644 --- a/.vscode/shared.code-snippets +++ b/.vscode/shared.code-snippets @@ -5,8 +5,8 @@ // $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. // Placeholders with the same ids are connected. // Example: - "JavaScript, TypeScript Copyright Header": { - "scope": "javascript,typescript", + "MSFT Copyright Header": { + "scope": "javascript,typescript,css", "prefix": [ "header", "stub", @@ -18,8 +18,6 @@ " * Licensed under the MIT License. See License.txt in the project root for license information.", " *--------------------------------------------------------------------------------------------*/", "", - "'use strict';", - "", "$0" ], "description": "Insert Copyright Statement" @@ -36,22 +34,5 @@ "private _onDid$1 = new Emitter<$2>();", "readonly onDid$1: Event<$2> = this._onDid$1.event;" ], - }, - "CSS Copyright Header": { - "scope": "css", - "prefix": [ - "header", - "stub", - "copyright" - ], - "body": [ - "/*---------------------------------------------------------------------------------------------", - " * Copyright (c) Microsoft Corporation. All rights reserved.", - " * Licensed under the MIT License. See License.txt in the project root for license information.", - " *--------------------------------------------------------------------------------------------*/", - "", - "$0" - ], - "description": "Insert Copyright Statement" } }