-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade tree-sitter to v0.25 (ABI 15)
Signed-off-by: Arnau Siches <[email protected]> Action: dependency-management
- Loading branch information
Showing
34 changed files
with
2,621 additions
and
193 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
* text=auto eol=lf | ||
|
||
# Generated source files | ||
src/*.json linguist-generated | ||
src/parser.c linguist-generated | ||
src/tree_sitter/* linguist-generated | ||
|
||
# C bindings | ||
bindings/c/** linguist-generated | ||
CMakeLists.txt linguist-generated | ||
Makefile linguist-generated | ||
|
||
# Rust bindings | ||
bindings/rust/* linguist-generated | ||
Cargo.toml linguist-generated | ||
Cargo.lock linguist-generated | ||
|
||
# Node.js bindings | ||
bindings/node/* linguist-generated | ||
binding.gyp linguist-generated | ||
package.json linguist-generated | ||
package-lock.json linguist-generated | ||
|
||
# Python bindings | ||
bindings/python/** linguist-generated | ||
setup.py linguist-generated | ||
pyproject.toml linguist-generated | ||
|
||
# Go bindings | ||
bindings/go/* linguist-generated | ||
go.mod linguist-generated | ||
go.sum linguist-generated | ||
|
||
# Swift bindings | ||
bindings/swift/** linguist-generated | ||
Package.swift linguist-generated | ||
Package.resolved linguist-generated | ||
|
||
# Zig bindings | ||
build.zig linguist-generated | ||
build.zig.zon linguist-generated |
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 |
---|---|---|
@@ -1,13 +1,47 @@ | ||
node_modules | ||
build | ||
target | ||
*.log | ||
package-lock.json | ||
Cargo.lock | ||
/.build | ||
/*.a | ||
/*.dynlib | ||
/*.so* | ||
# Rust artifacts | ||
target/ | ||
|
||
# Node artifacts | ||
build/ | ||
prebuilds/ | ||
node_modules/ | ||
|
||
# Swift artifacts | ||
.build/ | ||
|
||
# Go artifacts | ||
_obj/ | ||
|
||
# Python artifacts | ||
.venv/ | ||
dist/ | ||
*.egg-info | ||
*.whl | ||
|
||
# C artifacts | ||
*.a | ||
*.so | ||
*.so.* | ||
*.dylib | ||
*.dll | ||
*.pc | ||
*.exp | ||
*.lib | ||
|
||
# Zig artifacts | ||
.zig-cache/ | ||
zig-cache/ | ||
zig-out/ | ||
|
||
# Example dirs | ||
/examples/*/ | ||
|
||
# Grammar volatiles | ||
*.wasm | ||
*.obj | ||
*.o | ||
/bindings/c/*.h | ||
/bindings/c/tree-sitter-*.pc | ||
|
||
# Archives | ||
*.tar.gz | ||
*.tgz | ||
*.zip |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.