summaryrefslogtreecommitdiff
path: root/tools/support/config.json
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2021-02-23 20:24:10 +0100
committerLaurenz <laurmaedje@gmail.com>2021-02-23 20:27:23 +0100
commit7092c504474eca25ba456db606de11402ea1e8ca (patch)
tree128cb37a91e68d8be9487942d7358b89aea8135a /tools/support/config.json
parentde37a056ed3e90d8ba93c4b3a315a8046ef53484 (diff)
VS Code language support extension 🛠
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": [
+ ["[", "]"],
+ ["{", "}"],
+ ["(", ")"],
+ ["\"", "\""],
+ ["*", "*"],
+ ["_", "_"],
+ ["`", "`"],
+ ["$", "$"]
+ ]
+}