-
Notifications
You must be signed in to change notification settings - Fork 4
/
tree-sitter.json
48 lines (48 loc) · 1.12 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
41
42
43
44
45
46
47
48
{
"grammars": [
{
"name": "qmljs",
"camelcase": "Qmljs",
"scope": "source.qml",
"path": ".",
"file-types": [
"qml"
],
"highlights": [
"node_modules/tree-sitter-javascript/queries/highlights.scm",
"node_modules/tree-sitter-typescript/queries/highlights.scm",
"queries/highlights.scm"
],
"locals": [
"queries/locals.scm",
"node_modules/tree-sitter-typescript/queries/locals.scm",
"node_modules/tree-sitter-javascript/queries/locals.scm"
],
"tags": [
"node_modules/tree-sitter-typescript/queries/tags.scm",
"node_modules/tree-sitter-javascript/queries/tags.scm"
]
}
],
"metadata": {
"version": "0.1.2",
"license": "MIT",
"description": "QML grammar for the tree-sitter parsing library",
"authors": [
{
"name": "Yuya Nishihara"
}
],
"links": {
"repository": "git+https://github.com/yuja/tree-sitter-qmljs.git"
}
},
"bindings": {
"c": true,
"go": true,
"node": true,
"python": true,
"rust": true,
"swift": true
}
}