Skip to content

Commit d66e71e

Browse files
committed
Add tree-sitter.json.
* tree-sitter.json: New file.
1 parent a527586 commit d66e71e

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

tree-sitter.json

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/config.schema.json",
3+
"grammars": [
4+
{
5+
"name": "ispc",
6+
"camelcase": "ISPC",
7+
"title": "ISPC",
8+
"scope": "source.ispc",
9+
"file-types": [
10+
"ispc"
11+
],
12+
"injection-regex": "^ispc$",
13+
"class-name": "TreeSitterIspc"
14+
}
15+
],
16+
"metadata": {
17+
"version": "0.1.1",
18+
"license": "MIT",
19+
"description": "ISPC grammar for tree-sitter (based on C grammar)",
20+
"authors": [
21+
{
22+
"name": "Fabian Wermelinger"
23+
}
24+
],
25+
"links": {
26+
"repository": "https://github.com/tree-sitter-grammars/tree-sitter-ispc"
27+
}
28+
},
29+
"bindings": {
30+
"c": true,
31+
"go": true,
32+
"node": true,
33+
"python": true,
34+
"rust": true,
35+
"swift": true,
36+
"zig": false
37+
}
38+
}

0 commit comments

Comments
 (0)