Skip to content

Commit 37383a9

Browse files
committed
add gitingnore
1 parent 5415eb8 commit 37383a9

File tree

1 file changed

+77
-0
lines changed

1 file changed

+77
-0
lines changed

.gitignore

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
# Compiled source #
2+
###################
3+
*.com
4+
*.class
5+
*.dll
6+
*.exe
7+
*.o
8+
*.so
9+
10+
# Packages #
11+
############
12+
*.7z
13+
*.dmg
14+
*.gz
15+
*.iso
16+
*.jar
17+
*.rar
18+
*.tar
19+
*.zip
20+
21+
# Logs and databases #
22+
######################
23+
*.log
24+
*.sql
25+
*.sqlite
26+
27+
# OS generated files #
28+
######################
29+
.DS_Store
30+
.DS_Store?
31+
._*
32+
.Spotlight-V100
33+
.Trashes
34+
ehthumbs.db
35+
Thumbs.db
36+
37+
# IDE and editor files #
38+
########################
39+
.idea/
40+
.vscode/
41+
.vs/
42+
*.swp
43+
*.swo
44+
*~
45+
46+
# Node.js #
47+
###########
48+
node_modules/
49+
npm-debug.log
50+
51+
# Python #
52+
##########
53+
*.py[cod]
54+
__pycache__/
55+
*.so
56+
57+
# Java #
58+
########
59+
*.class
60+
*.jar
61+
*.war
62+
*.ear
63+
64+
# Gradle #
65+
##########
66+
.gradle
67+
/build/
68+
69+
# Maven #
70+
#########
71+
target/
72+
73+
# Miscellaneous #
74+
#################
75+
*.bak
76+
*.tmp
77+
*.temp

0 commit comments

Comments
 (0)