30 lines
569 B
JSON
30 lines
569 B
JSON
{
|
|
"comments": {
|
|
"blockComment": ["<!--", "-->"]
|
|
},
|
|
"brackets": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"]
|
|
],
|
|
"autoClosingPairs": [
|
|
{ "open": "{", "close": "}" },
|
|
{ "open": "[", "close": "]" },
|
|
{ "open": "(", "close": ")" },
|
|
{ "open": "\"", "close": "\"" },
|
|
{ "open": "'", "close": "'" }
|
|
],
|
|
"surroundingPairs": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"],
|
|
["\"", "\""],
|
|
["'", "'"]
|
|
],
|
|
"folding": {
|
|
"markers": {
|
|
"start": "^\\s*<!--\\s*#region\\b",
|
|
"end": "^\\s*<!--\\s*#endregion\\b"
|
|
}
|
|
}
|
|
} |