aboutsummaryrefslogtreecommitdiff
path: root/ext/language-configuration.json
diff options
context:
space:
mode:
authorCody <cody@codyq.dev>2023-03-30 02:44:54 -0500
committerCody <cody@codyq.dev>2023-03-30 02:44:54 -0500
commit2970520a9592b5c6d45291f54073552a474b71b4 (patch)
treef42ecc1be0989367cf7c70d0b7909bac0b86904e /ext/language-configuration.json
parentbb95375f8b24141bf7dfe5a8b1bba5c995f61253 (diff)
downloadsloth-2970520a9592b5c6d45291f54073552a474b71b4.tar.gz
Restructure
Diffstat (limited to 'ext/language-configuration.json')
-rw-r--r--ext/language-configuration.json28
1 files changed, 0 insertions, 28 deletions
diff --git a/ext/language-configuration.json b/ext/language-configuration.json
deleted file mode 100644
index a063f16..0000000
--- a/ext/language-configuration.json
+++ /dev/null
@@ -1,28 +0,0 @@
-{
- "comments": {
- "lineComment": "#"
- },
- "brackets": [
- ["(", ")"],
- ["[", "]"],
- ["{", "}"]
- ],
- "autoClosingPairs": [
- { "open": "{", "close": "}" },
- { "open": "[", "close": "]" },
- { "open": "(", "close": ")" },
- { "open": "'", "close": "'", "notIn": ["string", "comment"] },
- { "open": "\"", "close": "\"", "notIn": ["comment"] }
- ],
- "surroundingPairs": [
- ["(", ")"],
- ["[", "]"],
- ["{", "}"],
- ["'", "'"],
- ["\"", "\""]
- ],
- "indentationRules": {
- "increaseIndentPattern": "^((?!#).)*(\\{[^}\"'`]*|\\([^)\"'`]*|\\[[^\\]\"'`]*)$",
- "decreaseIndentPattern": "^((?!.*?#).*\\*/)?\\s*[\\)\\}\\]].*$"
- }
-}