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