26 lines
414 B
JSON
26 lines
414 B
JSON
|
{
|
||
|
"comments": {
|
||
|
"lineComment": "//",
|
||
|
"blockComment": [ "/*", "*/" ]
|
||
|
},
|
||
|
"brackets": [
|
||
|
["{", "}"],
|
||
|
["[", "]"],
|
||
|
["(", ")"]
|
||
|
],
|
||
|
"autoClosingPairs": [
|
||
|
["{", "}"],
|
||
|
["[", "]"],
|
||
|
["(", ")"],
|
||
|
{ "open": "\"", "close": "\"", "notIn": ["string"] },
|
||
|
{ "open": "'", "close": "'", "notIn": ["string"] }
|
||
|
],
|
||
|
"surroundingPairs": [
|
||
|
["{", "}"],
|
||
|
["[", "]"],
|
||
|
["(", ")"],
|
||
|
["\"", "\""],
|
||
|
["'", "'"]
|
||
|
]
|
||
|
}
|