Skip to content

Commit 3ba7967

Browse files
committed
Add ignore.
1 parent 80015aa commit 3ba7967

File tree

1 file changed

+95
-0
lines changed

1 file changed

+95
-0
lines changed

.gitignore

+95
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
# ==============================================================================
2+
# Misc system junk
3+
# ==============================================================================
4+
5+
.DS_Store
6+
._*
7+
.Spotlight-V100
8+
.Trashes
9+
.com.apple.*
10+
Thumbs.db
11+
Desktop.ini
12+
.svn
13+
14+
# ==============================================================================
15+
# Projects/IDE files
16+
# ==============================================================================
17+
18+
*~
19+
20+
# Sublime Text
21+
*.sublime-project
22+
*.sublime-workspace
23+
24+
# VIM
25+
.*.sw[a-z]
26+
*.un~
27+
Session.vim
28+
29+
# TextMate
30+
*.tmproj
31+
*.tmproject
32+
tmtags
33+
34+
# Eclipse
35+
.project
36+
.metadata
37+
38+
# WebStorm
39+
.idea
40+
41+
# VS
42+
.vs
43+
*.user
44+
*.sdf
45+
*.opensdf
46+
bin/
47+
obj/
48+
49+
# ==============================================================================
50+
# Temp generated code
51+
# ==============================================================================
52+
53+
*.py[co]
54+
.coverage
55+
*.o
56+
*.aps
57+
58+
# ==============================================================================
59+
# Logs and dumps
60+
# ==============================================================================
61+
62+
npm-debug.log
63+
private/
64+
*.trace
65+
imgui.ini
66+
*.log
67+
68+
# ==============================================================================
69+
# Build system output
70+
# ==============================================================================
71+
72+
# npm/node
73+
.lock-wscript
74+
node_modules/
75+
node_modules/**/build/
76+
node_modules/.bin/
77+
78+
# coverage/etc
79+
/scratch/
80+
81+
build/
82+
83+
# ==============================================================================
84+
# Local-only paths
85+
# ==============================================================================
86+
87+
.vagrant
88+
/attic/
89+
/content/
90+
/third_party/binutils/binutils-2.24.tar.gz
91+
/third_party/binutils/bin/
92+
/third_party/binutils/powerpc-none-elf/
93+
/third_party/binutils/share/
94+
/third_party/binutils/binutils*
95+
/third_party/vasm/

0 commit comments

Comments
 (0)