mirror of
https://github.com/soconnor0919/tree-sitter-xml.git
synced 2026-02-04 15:56:37 -05:00
38 lines
990 B
JSON
38 lines
990 B
JSON
{
|
|
"$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/config.schema.json",
|
|
"grammars": [
|
|
{
|
|
"name": "xml",
|
|
"camelcase": "Xml",
|
|
"title": "XML",
|
|
"scope": "source.xml",
|
|
"file-types": ["xml"],
|
|
"injection-regex": "^xml$",
|
|
"class-name": "TreeSitterXml"
|
|
}
|
|
],
|
|
"metadata": {
|
|
"version": "1.0.0",
|
|
"license": "MIT",
|
|
"description": "A Tree-sitter grammar for parsing XML files (nand2tetris compiler output)",
|
|
"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
|
|
}
|
|
}
|