Clean up .gitignore

This commit is contained in:
Christiaan Dirkx 2021-04-20 21:40:32 +02:00
parent 62652865b6
commit 3794fc9ce9

76
.gitignore vendored
View File

@ -5,53 +5,75 @@
# created during manual debugging and many people like to clean up instead of # 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 # having git ignore such leftovers. You can use `.git/info/exclude` to
# configure your local ignore list. # configure your local ignore list.
# FIXME: This needs cleanup.
*~ ## File system
.DS_Store
desktop.ini
## Version control
.hgignore
.hg/
## Editor
*.swp *.swp
*.swo *.swo
.#* Session.vim
.DS_Store
.cproject .cproject
.hg/
.hgignore
.idea .idea
*.iml *.iml
__pycache__/
*.py[cod]
*$py.class
.project
.settings/
.valgrindrc
.vscode .vscode
.project
.favorites.json .favorites.json
/Makefile .settings/
/build/
## Tool
.valgrindrc
.cargo
# Included because it is part of the test case
!/src/test/run-make/thumb-none-qemu/example/.cargo
## Configuration
/config.toml /config.toml
/dist/ /Makefile
config.mk
config.stamp
no_llvm_build
## Build
/dl/ /dl/
/doc/ /doc/
/inst/ /inst/
/llvm/ /llvm/
/mingw-build/ /mingw-build/
/src/tools/x/target /build/
# Created by default with `src/ci/docker/run.sh`: /dist/
/obj/
/unicode-downloads /unicode-downloads
/target /target
# Generated by compiletest for incremental: /src/tools/x/target
# Generated by compiletest for incremental
/tmp/ /tmp/
# Created by default with `src/ci/docker/run.sh`
/obj/
## Temporary files
*~
\#*
\#*\#
.#*
## Tags
tags tags
tags.* tags.*
TAGS TAGS
TAGS.* TAGS.*
\#*
\#*\# ## Python
config.mk __pycache__/
config.stamp *.py[cod]
Session.vim *$py.class
.cargo
!/src/test/run-make/thumb-none-qemu/example/.cargo ## Node
no_llvm_build
**node_modules **node_modules
**package-lock.json **package-lock.json
# Before adding new lines, see the comment at the top. # Before adding new lines, see the comment at the top.