-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtree-sitter.json
More file actions
42 lines (42 loc) · 916 Bytes
/
tree-sitter.json
File metadata and controls
42 lines (42 loc) · 916 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/config.schema.json",
"grammars": [
{
"name": "robot",
"camelcase": "Robot",
"title": "Robot",
"scope": "source.robot",
"file-types": [
"robot"
],
"highlights": [
"queries/highlights.scm"
],
"injection-regex": "^robot$",
"class-name": "TreeSitterRobot"
}
],
"metadata": {
"version": "1.3.0",
"license": "ISC",
"description": "Tree-sitter parser for Robot Framework files",
"authors": [
{
"name": "Tomas Sandven",
"url": "https://github.com/Hubro/tree-sitter-robot"
}
],
"links": {
"repository": "https://github.com/Hubro/tree-sitter-robot"
}
},
"bindings": {
"c": true,
"go": true,
"node": true,
"python": true,
"rust": true,
"swift": true,
"zig": false
}
}