Migrate PHP to language-configuration

This commit is contained in:
Martin Aeschlimann
2016-07-21 19:57:02 +02:00
parent e7ae751e50
commit 354a014029
4 changed files with 21 additions and 24 deletions

View File

@@ -0,0 +1,19 @@
{
"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"] }
]
}