Files
elm-language-client-vscode/language-configuration.json
2019-02-10 12:23:49 +01:00

62 lines
861 B
JSON

{
"comments": {
"lineComment": "--",
"blockComment": [
"{-",
"-}"
]
},
"brackets": [
[
"{",
"}"
],
[
"[",
"]"
],
[
"(",
")"
]
],
"surroundingPairs": [
[
"{",
"}"
],
[
"[",
"]"
],
[
"(",
")"
],
[
"\"",
"\""
]
],
"autoClosingPairs": [
[
"(",
")"
],
[
"{",
"}"
],
[
"[",
"]"
],
[
"\"",
"\""
]
],
"folding": {
"offSide": true
}
}