Ignore lock files in grammar repos
It is very common practice to ignore these lock files for libraries, since they do not apply to applications that use the libraries. The lock files are especially not useful in tree-sitter grammar repos, since tree-sitter grammars should not have dependencies. The lock files are just a source of merge conflicts and spurious CI failures.
This commit is contained in:
parent
19148eaa0d
commit
ca64399f9f
1 changed files with 3 additions and 0 deletions
|
|
@ -1,13 +1,16 @@
|
|||
# Rust artifacts
|
||||
target/
|
||||
Cargo.lock
|
||||
|
||||
# Node artifacts
|
||||
build/
|
||||
prebuilds/
|
||||
node_modules/
|
||||
package-lock.json
|
||||
|
||||
# Swift artifacts
|
||||
.build/
|
||||
Package.resolved
|
||||
|
||||
# Go artifacts
|
||||
_obj/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue