-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathtree-sitter.json
More file actions
50 lines (50 loc) · 1.25 KB
/
tree-sitter.json
File metadata and controls
50 lines (50 loc) · 1.25 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
45
46
47
48
49
50
{
"$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/config.schema.json",
"grammars": [
{
"name": "glimmer",
"camelcase": "Glimmer",
"title": "Glimmer",
"scope": "source.glimmer",
"path": ".",
"file-types": [
"handlebars",
"html.handlebars",
"hbs",
"glimmer"
],
"injection-regex": "^(hbs|glimmer|handlebars)$",
"highlights": ["queries/glimmer/highlights.scm"],
"injections": ["queries/glimmer/injections.scm"],
"locals": ["queries/glimmer/locals.scm"],
"indents": ["queries/glimmer/indents.scm"],
"folds": ["queries/glimmer/folds.scm"],
"class-name": "TreeSitterGlimmer"
}
],
"metadata": {
"version": "1.4.0",
"license": "MIT",
"description": "tree-sitter parser for glimmer syntax (and also some of handlebars)",
"authors": [
{
"name": "NullVoxPopuli",
"url": "github.com/nullvoxpopuli"
}
],
"links": {
"repository": "git@github.com:ember-tooling/tree-sitter-glimmer.git",
"funding": ""
}
},
"bindings": {
"c": true,
"go": true,
"java": false,
"node": true,
"python": true,
"rust": true,
"swift": true,
"zig": false
}
}