From 8948a2055ce70cd69944e7bc626bdaea2df9fa69 Mon Sep 17 00:00:00 2001 From: Anand Dyavanapalli Date: Wed, 8 Mar 2017 18:20:24 -0500 Subject: [PATCH] TypeScript should use double quotes for string. (#22255) From style guide: https://github.com/Microsoft/TypeScript/wiki/Coding-guidelines --- extensions/typescript/snippets/typescript.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/typescript/snippets/typescript.json b/extensions/typescript/snippets/typescript.json index 40ff628a00b..b40cfb83632 100644 --- a/extensions/typescript/snippets/typescript.json +++ b/extensions/typescript/snippets/typescript.json @@ -50,7 +50,7 @@ "Import external module.": { "prefix": "import statement", "body": [ - "import { $0 } from '${1:module}';" + "import { $0 } from \"${1:module}\";" ], "description": "Import external module." },