Migrate JSON to language-configuration

This commit is contained in:
Martin Aeschlimann
2016-07-21 19:54:03 +02:00
parent c04f01e60c
commit e7ae751e50
4 changed files with 20 additions and 22 deletions

View File

@@ -0,0 +1,18 @@
{
"comments": {
"lineComment": "//",
"blockComment": [ "/*", "*/" ]
},
"brackets": [
["{", "}"],
["[", "]"]
],
"autoClosingPairs": [
{ "open": "{", "close": "}", "notIn": ["string"] },
{ "open": "[", "close": "]", "notIn": ["string"] },
{ "open": "(", "close": ")", "notIn": ["string"] },
{ "open": "'", "close": "'", "notIn": ["string"] },
{ "open": "\"", "close": "\"", "notIn": ["string", "comment"] },
{ "open": "`", "close": "`", "notIn": ["string", "comment"] }
]
}