Initial commit

This commit is contained in:
2026-01-17 15:37:53 +01:00
commit ccd44c8172
31 changed files with 952 additions and 0 deletions

39
tree-sitter.json Normal file
View File

@@ -0,0 +1,39 @@
{
"$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/config.schema.json",
"grammars": [
{
"name": "mc",
"camelcase": "Mc",
"title": "MC",
"scope": "source.mc",
"file-types": [
"mc",
"c"
],
"injection-regex": "^mc$",
"class-name": "TreeSitterMc"
}
],
"metadata": {
"version": "0.1.0",
"license": "Apache-2.0",
"description": "A parser for the MC programming language",
"authors": [
{
"name": "Matthias Unterrainer"
}
],
"links": {
"repository": "https://git.matthunter.de/matth0930/tree-sitter-mc.git"
}
},
"bindings": {
"c": true,
"go": true,
"node": true,
"python": true,
"rust": true,
"swift": true,
"zig": false
}
}