mirror of
https://github.com/digital-asset/daml.git
synced 2024-11-10 10:46:11 +03:00
30 lines
640 B
JSON
30 lines
640 B
JSON
{
|
|
"comments": {
|
|
"lineComment": "--",
|
|
"blockComment": ["{-", "-}"]
|
|
},
|
|
"brackets": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"]
|
|
],
|
|
"autoClosingPairs": [
|
|
{ "open": "{", "close": "}" },
|
|
{ "open": "[", "close": "]" },
|
|
{ "open": "(", "close": ")" },
|
|
{ "open": "\"", "close": "\"", "notIn": ["string"] },
|
|
{ "open": "`", "close": "`", "notIn": ["string", "comment"] }
|
|
],
|
|
"surroundingPairs": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"],
|
|
["'", "'"],
|
|
["\"", "\""],
|
|
["`", "`"]
|
|
],
|
|
"folding": {
|
|
"offSide": true
|
|
}
|
|
}
|