35 lines
770 B
JSON
35 lines
770 B
JSON
|
{
|
||
|
"comments": {
|
||
|
"lineComment": "//",
|
||
|
"blockComment": [ "/*", "*/" ]
|
||
|
},
|
||
|
"brackets": [
|
||
|
["{", "}"],
|
||
|
["[", "]"],
|
||
|
["(", ")"]
|
||
|
],
|
||
|
"autoClosingPairs": [
|
||
|
{ "open": "{", "close": "}" },
|
||
|
{ "open": "[", "close": "]" },
|
||
|
{ "open": "(", "close": ")" },
|
||
|
{ "open": "'", "close": "'", "notIn": ["string", "comment"] },
|
||
|
{ "open": "\"", "close": "\"", "notIn": ["string"] },
|
||
|
{ "open": "`", "close": "`", "notIn": ["string", "comment"] },
|
||
|
{ "open": "/**", "close": " */", "notIn": ["string"] }
|
||
|
],
|
||
|
"surroundingPairs": [
|
||
|
["{", "}"],
|
||
|
["[", "]"],
|
||
|
["(", ")"],
|
||
|
["'", "'"],
|
||
|
["\"", "\""],
|
||
|
["`", "`"]
|
||
|
],
|
||
|
"autoCloseBefore": ";:.,=}])>` \n\t",
|
||
|
"folding": {
|
||
|
"markers": {
|
||
|
"start": "^\\s*//\\s*#?region\\b",
|
||
|
"end": "^\\s*//\\s*#?endregion\\b"
|
||
|
}
|
||
|
}
|
||
|
}
|