rust/.gitignore
Malo Jaffré 4734bc0150 Ignore Cargo.lock in .gitignore
Since the merge of #2146, `Cargo.lock` is no longer checked in the git
repository, but `cargo` generates it anyway, if we are not in the main rust
repository. Ignore it to avoid eventual confusion when contributing directly
to clippy.
2017-10-20 23:20:44 +02:00

32 lines
321 B
Plaintext

# Used by Travis to be able to push:
/.github/deploy_key
out
# Compiled files
*.o
*.so
*.rlib
*.dll
*.pyc
# Executables
*.exe
# Generated by Cargo
Cargo.lock
/target/
/clippy_lints/target/
# Generated by dogfood
/target_recur/
# gh pages docs
util/gh-pages/lints.json
# rustfmt backups
*.rs.bk
helper.txt
.vscode