-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathtree-sitter.json
40 lines (40 loc) · 1 KB
/
tree-sitter.json
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
{
"metadata": {
"version": "0.19.5",
"license": "MIT",
"description": "Golang template grammar for tree-sitter",
"authors": [
{
"name": "Nikita Galaiko"
}
],
"links": {
"repository": "https://github.com/tree-sitter/tree-sitter-go-template"
}
},
"grammars": [
{
"name": "go-template",
"camelcase": "GoTemplate",
"scope": "source.gotexttmpl",
"path": ".",
"file-types": ["gotmpl", "gotexttmpl", "gohtmltmpl", "yaml"],
"content-regex": "{{.+}}"
},
{
"name": "go-template-helm",
"camelcase": "GoTemplateHelm",
"scope": "source.helm",
"path": "dialects/helm",
"file-types": ["helm"]
}
],
"bindings": {
"c": true,
"go": true,
"node": true,
"python": true,
"rust": true,
"swift": true
}
}