rust/.gitignore

76 lines
1.2 KiB
Plaintext
Raw Normal View History

2019-10-21 08:36:49 +00: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.
2021-04-20 19:40:32 +00:00
## File system
.DS_Store
desktop.ini
## Editor
2021-03-11 02:28:05 +00:00
*.swp
*.swo
2021-04-20 19:40:32 +00:00
Session.vim
.cproject
2016-05-13 17:18:59 +00:00
.idea
*.iml
2021-04-20 19:40:32 +00:00
.vscode
.project
2021-04-20 19:40:32 +00:00
.favorites.json
.settings/
2021-04-20 19:40:32 +00:00
## Tool
2011-01-03 21:56:01 +00:00
.valgrindrc
2021-04-20 19:40:32 +00:00
.cargo
# Included because it is part of the test case
!/src/test/run-make/thumb-none-qemu/example/.cargo
## Configuration
/config.toml
2021-04-20 19:40:32 +00:00
/Makefile
config.mk
config.stamp
no_llvm_build
## Build
/dl/
2019-08-08 17:42:46 +00:00
/doc/
2011-12-23 19:43:27 +00:00
/inst/
/llvm/
2011-07-13 20:51:30 +00:00
/mingw-build/
2021-04-20 19:40:32 +00:00
/build/
/dist/
2020-01-13 21:40:19 +00:00
/unicode-downloads
/target
2021-04-20 19:40:32 +00:00
/src/tools/x/target
# Generated by compiletest for incremental
/tmp/
2021-04-20 19:40:32 +00:00
# Created by default with `src/ci/docker/run.sh`
/obj/
## Temporary files
*~
\#*
\#*\#
.#*
## Tags
2018-07-22 12:14:06 +00:00
tags
tags.*
TAGS
2018-07-22 12:14:06 +00:00
TAGS.*
2021-04-20 19:40:32 +00:00
## Python
__pycache__/
*.py[cod]
*$py.class
## Node
2021-02-21 13:21:38 +00:00
**node_modules
**package-lock.json
2021-04-20 19:40:32 +00:00
2019-10-21 08:36:49 +00:00
# Before adding new lines, see the comment at the top.