rust/.gitignore

58 lines
1.1 KiB
Plaintext
Raw Permalink Normal View History

2019-10-21 10:36:49 +02: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.
*~
2021-03-11 03:28:05 +01:00
*.swp
*.swo
.#*
.DS_Store
.cproject
2010-06-16 23:30:45 +02:00
.hg/
.hgignore
2016-05-13 19:18:59 +02:00
.idea
*.iml
2016-05-13 19:18:59 +02:00
__pycache__/
*.py[cod]
*$py.class
.project
.settings/
2011-01-03 22:56:01 +01:00
.valgrindrc
2019-03-26 17:57:13 +01:00
.vscode
2018-12-23 21:21:02 +01:00
.favorites.json
/Makefile
2019-08-08 19:42:46 +02:00
/build/
/config.toml
/dist/
/dl/
2019-08-08 19:42:46 +02:00
/doc/
2011-12-23 20:43:27 +01:00
/inst/
/llvm/
2011-07-13 22:51:30 +02:00
/mingw-build/
/src/tools/x/target
# Created by default with `src/ci/docker/run.sh`:
2019-08-08 19:42:46 +02:00
/obj/
2020-01-13 22:40:19 +01:00
/unicode-downloads
/target
2019-08-10 10:01:03 +02:00
# Generated by compiletest for incremental:
/tmp/
2018-07-22 14:14:06 +02:00
tags
tags.*
TAGS
2018-07-22 14:14:06 +02:00
TAGS.*
\#*
\#*\#
config.mk
2012-03-28 07:25:10 +02:00
config.stamp
2018-07-22 14:14:06 +02:00
Session.vim
.cargo
!/src/test/run-make/thumb-none-qemu/example/.cargo
2017-08-13 18:53:50 +02:00
no_llvm_build
2021-02-21 14:21:38 +01:00
**node_modules
**package-lock.json
2019-10-21 10:36:49 +02:00
# Before adding new lines, see the comment at the top.