27 lines
472 B
JSON
27 lines
472 B
JSON
{
|
|
"comments": {
|
|
"lineComment": "--",
|
|
"blockComment": [ "/*", "*/" ]
|
|
},
|
|
"brackets": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"]
|
|
],
|
|
"autoClosingPairs": [
|
|
["{" , "}"],
|
|
["[" , "]"],
|
|
["(" , ")"],
|
|
["'" , "'"],
|
|
["`" , "`"],
|
|
["\"", "\""]
|
|
],
|
|
"surroundingPairs": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"],
|
|
["\"", "\""],
|
|
["'", "'"]
|
|
]
|
|
}
|