31 lines
752 B
JSON
31 lines
752 B
JSON
|
{
|
||
|
"comments": {
|
||
|
"lineComment": "//",
|
||
|
"blockComment": ["/*", "*/"]
|
||
|
},
|
||
|
"brackets": [
|
||
|
["{", "}"],
|
||
|
["[", "]"],
|
||
|
["(", ")"]
|
||
|
],
|
||
|
"autoClosingPairs": [
|
||
|
{ "open": "{", "close": "}" },
|
||
|
{ "open": "[", "close": "]" },
|
||
|
{ "open": "(", "close": ")" },
|
||
|
{ "open": "\"", "close": "\"", "notIn": ["string"] },
|
||
|
{ "open": "/*", "close": "*/", "notIn": ["string"] }
|
||
|
],
|
||
|
"surroundingPairs": [
|
||
|
{ "open": "{", "close": "}" },
|
||
|
{ "open": "[", "close": "]" },
|
||
|
{ "open": "(", "close": ")" },
|
||
|
{ "open": "\"", "close": "\"" }
|
||
|
],
|
||
|
"folding": {
|
||
|
"markers": {
|
||
|
"start": "^\\s*//\\s*#region\\b",
|
||
|
"end": "^\\s*//\\s*#endregion\\b"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|