diff options
Diffstat (limited to '')
| -rw-r--r-- | tree-sitter-yts/tree-sitter.json | 41 | ||||
| -rw-r--r-- | tree-sitter-yts/tree-sitter.json.license | 9 |
2 files changed, 26 insertions, 24 deletions
diff --git a/tree-sitter-yts/tree-sitter.json b/tree-sitter-yts/tree-sitter.json index f1a0586..33c2b6e 100644 --- a/tree-sitter-yts/tree-sitter.json +++ b/tree-sitter-yts/tree-sitter.json @@ -1,29 +1,40 @@ { + "$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/config.schema.json", "grammars": [ { - "name": "yts", - "camelcase": "Yts", + "name": "YTS", + "camelcase": "YTS", + "title": "YTS", "scope": "source.yts", - "path": ".", - "file-types": ["yts"], - "highlights": ["queries/highlights.scm"], - "injection-regex": "^(yts)$" + "file-types": [ + "yts" + ], + "injection-regex": "^yts$", + "class-name": "TreeSitterYts" } ], "metadata": { - "version": "0.0.1", - "license": "MIT", - "description": "yts grammar for tree-sitter", + "version": "0.1.0", + "license": "GPL-3-or-later", + "description": "Parser for yt's selection language", + "authors": [ + { + "name": "Benedikt Peetz", + "email": "benedikt.peetz@b-peetz.de" + } + ], "links": { - "repository": "https://git.vhack.eu/soispha/clients/yt/tree-sitter-yts" + "repository": "https://git.foss-syndicate.org/bpeetz/clients/yt" } }, "bindings": { - "c": true, - "go": true, - "node": true, - "python": true, + "c": false, + "go": false, + "java": false, + "node": false, + "python": false, "rust": true, - "swift": true + "swift": false, + "zig": false } } diff --git a/tree-sitter-yts/tree-sitter.json.license b/tree-sitter-yts/tree-sitter.json.license deleted file mode 100644 index d4d410f..0000000 --- a/tree-sitter-yts/tree-sitter.json.license +++ /dev/null @@ -1,9 +0,0 @@ -yt - A fully featured command line YouTube client - -Copyright (C) 2024 Benedikt Peetz <benedikt.peetz@b-peetz.de> -SPDX-License-Identifier: GPL-3.0-or-later - -This file is part of Yt. - -You should have received a copy of the License along with this program. -If not, see <https://www.gnu.org/licenses/gpl-3.0.txt>. |
