TypeScript should use double quotes for string. (#22255)

From style guide: https://github.com/Microsoft/TypeScript/wiki/Coding-guidelines
This commit is contained in:
Anand Dyavanapalli
2017-03-08 18:20:24 -05:00
committed by Matt Bierner
parent b072b80453
commit 8948a2055c

View File

@@ -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."
},