-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
We now use a dedicated config file instead of a tree-sitter section in package.json (see the docs for more info) so I migrated that for you as well.
- Loading branch information
Showing
2 changed files
with
50 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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 | ||
} | ||
} |