-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathtree-sitter.json
More file actions
42 lines (42 loc) · 945 Bytes
/
tree-sitter.json
File metadata and controls
42 lines (42 loc) · 945 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
{
"grammars": [
{
"name": "gleam",
"camelcase": "Gleam",
"scope": "source.gleam",
"path": ".",
"file-types": ["gleam"],
"highlights": "queries/highlights.scm",
"injections": "queries/injections.scm",
"locals": "queries/locals.scm",
"tags": "queries/tags.scm",
"injection-regex": "^gleam$"
}
],
"metadata": {
"version": "1.0.0",
"license": "Apache-2.0",
"description": "A tree-sitter grammar for the Gleam programming language",
"authors": [
{
"name": "Jonathan Arnett",
"email": "jonarnett90@gmail.com"
},
{
"name": "Michael Davis",
"email": "mcarsondavis@gmail.com"
}
],
"links": {
"repository": "https://github.com/gleam-lang/tree-sitter-gleam"
}
},
"bindings": {
"c": true,
"go": true,
"node": true,
"python": true,
"rust": true,
"swift": true
}
}