rust/.gitignore

76 lines
1.2 KiB
Plaintext
Raw Normal View History

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