mirror of
https://github.com/soconnor0919/tree-sitter-test-script.git
synced 2026-02-05 08:16:39 -05:00
38 lines
1.0 KiB
JSON
38 lines
1.0 KiB
JSON
{
|
|
"$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/config.schema.json",
|
|
"grammars": [
|
|
{
|
|
"name": "test_script",
|
|
"camelcase": "TestScript",
|
|
"title": "Test Script",
|
|
"scope": "source.test_script",
|
|
"file-types": ["tst"],
|
|
"injection-regex": "^test[-_]?script$|^tst$",
|
|
"class-name": "TreeSitterTestScript"
|
|
}
|
|
],
|
|
"metadata": {
|
|
"version": "1.0.0",
|
|
"license": "MIT",
|
|
"description": "A Tree-sitter grammar for parsing Test Script language (nand2tetris)",
|
|
"authors": [
|
|
{
|
|
"name": "Sean O'Connor",
|
|
"email": "sean@soconnor.dev"
|
|
}
|
|
],
|
|
"links": {
|
|
"repository": "https://github.com/soconnor0919/nand2tetris-zed"
|
|
}
|
|
},
|
|
"bindings": {
|
|
"c": true,
|
|
"go": false,
|
|
"node": true,
|
|
"python": false,
|
|
"rust": true,
|
|
"swift": false,
|
|
"zig": false
|
|
}
|
|
}
|