From a9a4ba60a37eb351d3ed872f1cfcf53e673be9ef Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Sat, 14 Dec 2024 12:29:47 +0100 Subject: feat(tree-sitter-yts): Update to new tree-sitter version & improve parsing --- tree-sitter-yts/tree-sitter.json | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 tree-sitter-yts/tree-sitter.json (limited to 'tree-sitter-yts/tree-sitter.json') diff --git a/tree-sitter-yts/tree-sitter.json b/tree-sitter-yts/tree-sitter.json new file mode 100644 index 0000000..380caf6 --- /dev/null +++ b/tree-sitter-yts/tree-sitter.json @@ -0,0 +1,33 @@ +{ + "grammars": [ + { + "name": "yts", + "camelcase": "Yts", + "scope": "source.yts", + "path": ".", + "file-types": [ + "yts" + ], + "highlights": [ + "queries/highlights.scm" + ], + "injection-regex": "^(yts)$" + } + ], + "metadata": { + "version": "0.0.1", + "license": "MIT", + "description": "yts grammar for tree-sitter", + "links": { + "repository": "https://git.vhack.eu/soispha/clients/yt/tree-sitter-yts" + } + }, + "bindings": { + "c": true, + "go": true, + "node": true, + "python": true, + "rust": true, + "swift": true + } +} -- cgit 1.4.1