diff --git a/client/elm.configuration.json b/client/elm.configuration.json deleted file mode 100644 index 13e6845..0000000 --- a/client/elm.configuration.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "comments": { - "lineComment": "--", - "blockComment": [ - "{-", - "-}" - ] - }, - "brackets": [ - [ - "{", - "}" - ], - [ - "[", - "]" - ], - [ - "(", - ")" - ] - ], - "surroundingPairs": [ - [ - "{", - "}" - ], - [ - "[", - "]" - ], - [ - "(", - ")" - ], - [ - "\"", - "\"" - ] - ], - "autoClosingPairs": [ - [ - "(", - ")" - ], - [ - "{", - "}" - ], - [ - "[", - "]" - ], - [ - "\"", - "\"" - ] - ], - "folding": { - "offSide": true - } -} \ No newline at end of file diff --git a/language-configuration.json b/language-configuration.json index aa25710..13e6845 100644 --- a/language-configuration.json +++ b/language-configuration.json @@ -1,30 +1,62 @@ { "comments": { - // symbol used for single line comment. Remove this entry if your language does not support line comments - "lineComment": "//", - // symbols used for start and end a block comment. Remove this entry if your language does not support block comments - "blockComment": [ "/*", "*/" ] + "lineComment": "--", + "blockComment": [ + "{-", + "-}" + ] }, - // symbols used as brackets "brackets": [ - ["{", "}"], - ["[", "]"], - ["(", ")"] + [ + "{", + "}" + ], + [ + "[", + "]" + ], + [ + "(", + ")" + ] ], - // symbols that are auto closed when typing - "autoClosingPairs": [ - ["{", "}"], - ["[", "]"], - ["(", ")"], - ["\"", "\""], - ["'", "'"] - ], - // symbols that that can be used to surround a selection "surroundingPairs": [ - ["{", "}"], - ["[", "]"], - ["(", ")"], - ["\"", "\""], - ["'", "'"] - ] + [ + "{", + "}" + ], + [ + "[", + "]" + ], + [ + "(", + ")" + ], + [ + "\"", + "\"" + ] + ], + "autoClosingPairs": [ + [ + "(", + ")" + ], + [ + "{", + "}" + ], + [ + "[", + "]" + ], + [ + "\"", + "\"" + ] + ], + "folding": { + "offSide": true + } } \ No newline at end of file