30 lines
586 B
JSON
30 lines
586 B
JSON
{
|
|
"comments": {
|
|
"lineComment": "//",
|
|
"blockComment": ["/*", "*/"]
|
|
},
|
|
"brackets": [
|
|
["[", "]"],
|
|
["{", "}"],
|
|
["(", ")"]
|
|
],
|
|
"autoClosingPairs": [
|
|
{ "open": "[", "close": "]" },
|
|
{ "open": "{", "close": "}" },
|
|
{ "open": "(", "close": ")" },
|
|
{ "open": "\"", "close": "\"", "notIn": ["string"] },
|
|
{ "open": "$", "close": "$", "notIn": ["string"] }
|
|
],
|
|
"autoCloseBefore": "$ \n\t",
|
|
"surroundingPairs": [
|
|
["[", "]"],
|
|
["{", "}"],
|
|
["(", ")"],
|
|
["\"", "\""],
|
|
["*", "*"],
|
|
["_", "_"],
|
|
["`", "`"],
|
|
["$", "$"]
|
|
]
|
|
}
|