Initial commit.

This commit is contained in:
2025-08-26 20:26:12 -04:00
commit 94f9c6652e
38 changed files with 1767 additions and 0 deletions

40
tree-sitter.json Normal file
View File

@@ -0,0 +1,40 @@
{
"$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/config.schema.json",
"grammars": [
{
"name": "scl",
"camelcase": "Scl",
"title": "SCL",
"scope": "source.scl",
"file-types": [
"scl"
],
"injection-regex": "^scl$",
"class-name": "TreeSitterScl"
}
],
"metadata": {
"version": "0.1.0",
"license": "MIT",
"description": "Scl grammar for tree-sitter",
"authors": [
{
"name": "Jacob Signorovitch",
"email": "jacob.signorovitch@gmail.com",
"url": "https://signorovitch.org/"
}
],
"links": {
"repository": "https://github.com/tree-sitter/tree-sitter-scl"
}
},
"bindings": {
"c": true,
"go": true,
"node": true,
"python": true,
"rust": true,
"swift": true,
"zig": false
}
}