37 lines
949 B
JSON
37 lines
949 B
JSON
{
|
|
"comments": {
|
|
"lineComment": "//",
|
|
"blockComment": ["/*", "*/"]
|
|
},
|
|
"brackets": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"]
|
|
],
|
|
"autoClosingPairs": [
|
|
{ "open": "{", "close": "}" },
|
|
{ "open": "[", "close": "]" },
|
|
{ "open": "(", "close": ")" },
|
|
{ "open": "\"", "close": "\"" },
|
|
{ "open": "`", "close": "`" }
|
|
],
|
|
"surroundingPairs": [
|
|
{ "open": "{", "close": "}" },
|
|
{ "open": "[", "close": "]" },
|
|
{ "open": "(", "close": ")" },
|
|
{ "open": "\"", "close": "\"" },
|
|
{ "open": "`", "close": "`" }
|
|
],
|
|
"folding": {
|
|
"markers": {
|
|
"start": "^\\s*//\\s*region\\b",
|
|
"end": "^\\s*//\\s*endregion\\b"
|
|
}
|
|
},
|
|
"wordPattern": "[a-zA-Z_][a-zA-Z0-9_]*",
|
|
"indentationRules": {
|
|
"increaseIndentPattern": "\\{[^}]*$",
|
|
"decreaseIndentPattern": "^\\s*\\}"
|
|
}
|
|
}
|