Skip to content

Commit 3794fc9

Browse files
committed
Clean up .gitignore
1 parent 6265286 commit 3794fc9

File tree

1 file changed

+48
-26
lines changed

1 file changed

+48
-26
lines changed

.gitignore

+48-26
Original file line numberDiff line numberDiff line change
@@ -5,53 +5,75 @@
55
# created during manual debugging and many people like to clean up instead of
66
# having git ignore such leftovers. You can use `.git/info/exclude` to
77
# configure your local ignore list.
8-
# FIXME: This needs cleanup.
9-
*~
8+
9+
## File system
10+
.DS_Store
11+
desktop.ini
12+
13+
## Version control
14+
.hgignore
15+
.hg/
16+
17+
## Editor
1018
*.swp
1119
*.swo
12-
.#*
13-
.DS_Store
20+
Session.vim
1421
.cproject
15-
.hg/
16-
.hgignore
1722
.idea
1823
*.iml
19-
__pycache__/
20-
*.py[cod]
21-
*$py.class
24+
.vscode
2225
.project
26+
.favorites.json
2327
.settings/
28+
29+
## Tool
2430
.valgrindrc
25-
.vscode
26-
.favorites.json
27-
/Makefile
28-
/build/
31+
.cargo
32+
# Included because it is part of the test case
33+
!/src/test/run-make/thumb-none-qemu/example/.cargo
34+
35+
## Configuration
2936
/config.toml
30-
/dist/
37+
/Makefile
38+
config.mk
39+
config.stamp
40+
no_llvm_build
41+
42+
## Build
3143
/dl/
3244
/doc/
3345
/inst/
3446
/llvm/
3547
/mingw-build/
36-
/src/tools/x/target
37-
# Created by default with `src/ci/docker/run.sh`:
38-
/obj/
48+
/build/
49+
/dist/
3950
/unicode-downloads
4051
/target
41-
# Generated by compiletest for incremental:
52+
/src/tools/x/target
53+
# Generated by compiletest for incremental
4254
/tmp/
55+
# Created by default with `src/ci/docker/run.sh`
56+
/obj/
57+
58+
## Temporary files
59+
*~
60+
\#*
61+
\#*\#
62+
.#*
63+
64+
## Tags
4365
tags
4466
tags.*
4567
TAGS
4668
TAGS.*
47-
\#*
48-
\#*\#
49-
config.mk
50-
config.stamp
51-
Session.vim
52-
.cargo
53-
!/src/test/run-make/thumb-none-qemu/example/.cargo
54-
no_llvm_build
69+
70+
## Python
71+
__pycache__/
72+
*.py[cod]
73+
*$py.class
74+
75+
## Node
5576
**node_modules
5677
**package-lock.json
78+
5779
# Before adding new lines, see the comment at the top.

0 commit comments

Comments
 (0)