summaryrefslogtreecommitdiff
path: root/tools/support/config.json
diff options
context:
space:
mode:
Diffstat (limited to 'tools/support/config.json')
-rw-r--r--tools/support/config.json29
1 files changed, 29 insertions, 0 deletions
diff --git a/tools/support/config.json b/tools/support/config.json
new file mode 100644
index 00000000..7ad0f437
--- /dev/null
+++ b/tools/support/config.json
@@ -0,0 +1,29 @@
+{
+ "comments": {
+ "lineComment": "//",
+ "blockComment": ["/*", "*/"]
+ },
+ "brackets": [
+ ["[", "]"],
+ ["{", "}"],
+ ["(", ")"]
+ ],
+ "autoClosingPairs": [
+ { "open": "[", "close": "]" },
+ { "open": "{", "close": "}" },
+ { "open": "(", "close": ")" },
+ { "open": "\"", "close": "\"", "notIn": ["string"] },
+ { "open": "$", "close": "$", "notIn": ["string"] }
+ ],
+ "autoCloseBefore": "$ \n\t",
+ "surroundingPairs": [
+ ["[", "]"],
+ ["{", "}"],
+ ["(", ")"],
+ ["\"", "\""],
+ ["*", "*"],
+ ["_", "_"],
+ ["`", "`"],
+ ["$", "$"]
+ ]
+}