-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathtree-sitter.json
More file actions
40 lines (40 loc) · 872 Bytes
/
tree-sitter.json
File metadata and controls
40 lines (40 loc) · 872 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
{
"grammars": [
{
"name": "elixir",
"camelcase": "Elixir",
"scope": "source.elixir",
"path": ".",
"file-types": ["ex", "exs"],
"highlights": "queries/highlights.scm",
"tags": "queries/tags.scm",
"injection-regex": "^(ex|elixir)$"
}
],
"metadata": {
"version": "0.3.5",
"license": "Apache-2.0",
"description": "Elixir grammar for the tree-sitter parsing library",
"authors": [
{
"name": "Jonatan Kłosko",
"email": "jonatanklosko@gmail.com"
},
{
"name": "Michael Davis",
"email": "mcarsondavis@gmail.com"
}
],
"links": {
"repository": "https://github.com/elixir-lang/tree-sitter-elixir"
}
},
"bindings": {
"c": true,
"go": true,
"node": true,
"python": true,
"rust": true,
"swift": true
}
}