rust/.gitignore

61 lines
1.3 KiB
Plaintext
Raw Normal View History

2019-10-21 03:36:49 -05:00
# 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.
# FIXME: This needs cleanup.
*~
.#*
.DS_Store
.cproject
2010-06-16 16:30:45 -05:00
.hg/
.hgignore
2016-05-13 12:18:59 -05:00
.idea
*.iml
2016-05-13 12:18:59 -05:00
__pycache__/
*.py[cod]
*$py.class
.project
.settings/
2011-01-03 15:56:01 -06:00
.valgrindrc
2019-03-26 11:57:13 -05:00
.vscode
2018-12-23 14:21:02 -06:00
.favorites.json
/Makefile
2019-08-08 12:42:46 -05:00
/build/
/config.toml
/dist/
/dl/
2019-08-08 12:42:46 -05:00
/doc/
2011-12-23 13:43:27 -06:00
/inst/
/llvm/
2011-07-13 15:51:30 -05:00
/mingw-build/
# Created by default with `src/ci/docker/run.sh`:
2019-08-08 12:42:46 -05:00
/obj/
/rustllvm/
2018-04-12 05:46:52 -05:00
/src/libcore/unicode/DerivedCoreProperties.txt
/src/libcore/unicode/DerivedNormalizationProps.txt
/src/libcore/unicode/PropList.txt
/src/libcore/unicode/ReadMe.txt
/src/libcore/unicode/Scripts.txt
/src/libcore/unicode/SpecialCasing.txt
/src/libcore/unicode/UnicodeData.txt
2019-04-18 08:30:50 -05:00
/src/libcore/unicode/downloaded
2019-08-08 12:43:44 -05:00
/target/
2019-08-10 03:01:03 -05:00
# Generated by compiletest for incremental:
/tmp/
2018-07-22 07:14:06 -05:00
tags
tags.*
TAGS
2018-07-22 07:14:06 -05:00
TAGS.*
\#*
\#*\#
config.mk
2012-03-28 00:25:10 -05:00
config.stamp
2018-07-22 07:14:06 -05:00
Session.vim
.cargo
!/src/test/run-make/thumb-none-qemu/example/.cargo
2017-08-13 11:53:50 -05:00
no_llvm_build
2019-10-21 03:36:49 -05:00
# Before adding new lines, see the comment at the top.