-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtree-sitter.json
More file actions
44 lines (44 loc) · 1.01 KB
/
tree-sitter.json
File metadata and controls
44 lines (44 loc) · 1.01 KB
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
43
44
{
"$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/config.schema.json",
"grammars": [
{
"name": "ros_interface",
"camelcase": "ROSInterface",
"title": "ROS Interface",
"scope": "source.ros_interface",
"file-types": [
"msg",
"srv",
"action"
],
"injection-regex": "^(ros_interface|rosmsg)$",
"class-name": "TreeSitterROSInterface",
"highlights": "queries/highlights.scm",
"injections": "queries/injections.scm",
"tags": "queries/tags.scm"
}
],
"metadata": {
"version": "0.1.1",
"license": "MIT",
"description": "ROS Interface grammar for tree-sitter",
"authors": [
{
"name": "Jasper van Brakel"
}
],
"links": {
"repository": "https://github.com/SuperJappie08/tree-sitter-ros-interface"
}
},
"bindings": {
"c": true,
"go": false,
"java": false,
"node": true,
"python": true,
"rust": true,
"swift": false,
"zig": false
}
}