diff --git a/tree-sitter.json b/tree-sitter.json new file mode 100644 index 0000000..7042892 --- /dev/null +++ b/tree-sitter.json @@ -0,0 +1,40 @@ +{ + "$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/config.schema.json", + "grammars": [ + { + "name": "haxe", + "camelcase": "Haxe", + "title": "Haxe", + "scope": "source.hx", + "file-types": [ + "hx" + ], + "highlights": "queries/highlights.scm", + "injection-regex": "^haxe$", + "class-name": "TreeSitterHaxe" + } + ], + "metadata": { + "version": "0.13.0", + "license": "MIT", + "description": "A tree sitter parser for haxe", + "authors": [ + { + "name": "Benjamin Van Treese", + "email": "vantreeseba@gmail.com" + } + ], + "links": { + "repository": "https://github.com/vantreeseba/tree-sitter-haxe" + } + }, + "bindings": { + "c": true, + "go": true, + "node": true, + "python": true, + "rust": true, + "swift": true, + "zig": false + } +}