X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=.gitignore;h=e5ca3e503130f63c8fb35475b0658dd4316a31b5;hb=f2acbb9d1eb5cb59199f16a608a291b4c884e967;hp=8012e93f6a90ebdee2747548145a52b8f2e3f45c;hpb=954dfd11987fe9072e732187309048efa885201a;p=rust.git diff --git a/.gitignore b/.gitignore index 8012e93f6a9..e5ca3e50313 100644 --- a/.gitignore +++ b/.gitignore @@ -1,16 +1,79 @@ +# This file should only ignore things that are generated during a `x.py` build, +# generated by common IDEs, and optional files controlled by the user that +# affect the build (such as config.toml). +# In particular, things like `mir_dump` should not be listed here; they are only +# created during manual debugging and many people like to clean up instead of +# having git ignore such leftovers. You can use `.git/info/exclude` to +# configure your local ignore list. + +## File system +.DS_Store +desktop.ini + +## Editor +*.swp +*.swo +Session.vim +.cproject +.idea +*.iml +.vscode +.project +.favorites.json +.settings/ + +## Tool +.valgrindrc +.cargo +# Included because it is part of the test case +!/tests/run-make/thumb-none-qemu/example/.cargo + +## Configuration +/config.toml +/Makefile +config.mk +config.stamp +no_llvm_build + +## Build +/dl/ +/doc/ +/inst/ +/llvm/ +/mingw-build/ +/build/ +/build-rust-analyzer/ +/dist/ +/unicode-downloads /target -**/*.rs.bk -*.rlib -*.o -perf.data -perf.data.old -*.events -*.string* -/y.bin -/y.bin.dSYM -/y.exe -/y.pdb -/build -/dist -/rust -/download +/src/bootstrap/target +/src/tools/x/target +# Created by default with `src/ci/docker/run.sh` +/obj/ + +## Temporary files +*~ +\#* +\#*\# +.#* + +## Tags +tags +tags.* +TAGS +TAGS.* + +## Python +__pycache__/ +*.py[cod] +*$py.class + +## Node +node_modules +package-lock.json +package.json + +## Rustdoc GUI tests +tests/rustdoc-gui/src/**.lock + +# Before adding new lines, see the comment at the top.