Skip to content

Commit 8567e44

Browse files
committed
added .gitignore.
1 parent d30b24d commit 8567e44

File tree

1 file changed

+168
-0
lines changed

1 file changed

+168
-0
lines changed

.gitignore

+168
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,168 @@
1+
# Created by http://www.gitignore.io
2+
3+
# general
4+
.*
5+
!.gitignore
6+
!.travis.yml
7+
8+
### Windows ###
9+
# Windows image file caches
10+
Thumbs.db
11+
ehthumbs.db
12+
13+
# Folder config file
14+
Desktop.ini
15+
16+
# Recycle Bin used on file shares
17+
$RECYCLE.BIN/
18+
19+
!.gitlab-ci.yml
20+
21+
*.save
22+
23+
data/save
24+
data/save/*
25+
26+
!.png
27+
!*.png
28+
!*.xcf
29+
!*.java
30+
31+
!icon
32+
!*icon*
33+
34+
.log
35+
*.log
36+
37+
!testconfig.cfg
38+
#server.cfg
39+
40+
# Windows Installer files
41+
*.cab
42+
*.msi
43+
*.msm
44+
*.msp
45+
46+
### Linux ###
47+
*~
48+
49+
# KDE directory preferences
50+
.directory
51+
52+
53+
### OSX ###
54+
.DS_Store
55+
.AppleDouble
56+
.LSOverride
57+
58+
# Icon must end with two \r
59+
Icon
60+
61+
62+
# Thumbnails
63+
._*
64+
65+
# Files that might appear on external disk
66+
.Spotlight-V100
67+
.Trashes
68+
69+
# Directories potentially created on remote AFP share
70+
.AppleDB
71+
.AppleDesktop
72+
Network Trash Folder
73+
Temporary Items
74+
.apdisk
75+
76+
77+
### Eclipse ###
78+
*.pydevproject
79+
.metadata
80+
.gradle
81+
bin/
82+
tmp/
83+
*.tmp
84+
*.bak
85+
*.swp
86+
*~.nib
87+
local.properties
88+
.settings/
89+
.loadpath
90+
91+
#hazelcast.cfg
92+
#*.cfg
93+
94+
# External tool builders
95+
.externalToolBuilders/
96+
97+
# Locally stored "Eclipse launch configurations"
98+
*.launch
99+
100+
# CDT-specific
101+
.cproject
102+
103+
# PDT-specific
104+
.buildpath
105+
106+
# sbteclipse plugin
107+
.target
108+
109+
# TeXlipse plugin
110+
.texlipse
111+
112+
113+
### NetBeans ###
114+
nbproject/private/
115+
build/
116+
nbbuild/
117+
dist/
118+
nbdist/
119+
nbactions.xml
120+
nb-configuration.xml
121+
122+
123+
### Intellij ###
124+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm
125+
126+
## Directory-based project format
127+
.idea/
128+
# if you remove the above rule, at least ignore user-specific stuff:
129+
# .idea/workspace.xml
130+
# .idea/tasks.xml
131+
# and these sensitive or high-churn files:
132+
# .idea/dataSources.ids
133+
# .idea/dataSources.xml
134+
# .idea/sqlDataSources.xml
135+
# .idea/dynamic.xml
136+
137+
## File-based project format
138+
*.ipr
139+
*.iws
140+
*.iml
141+
142+
# Java Mission Control Recordings (Profiler)
143+
*.jfr
144+
145+
## Additional for IntelliJ
146+
out/
147+
148+
# generated by mpeltonen/sbt-idea plugin
149+
.idea_modules/
150+
151+
# generated by JIRA plugin
152+
atlassian-ide-plugin.xml
153+
154+
# generated by Crashlytics plugin (for Android Studio and Intellij)
155+
com_crashlytics_export_strings.xml
156+
157+
158+
### Maven ###
159+
target/
160+
pom.xml.tag
161+
pom.xml.releaseBackup
162+
pom.xml.versionsBackup
163+
pom.xml.next
164+
release.properties
165+
166+
# opengl
167+
*.cglsl
168+
/gradle.properties

0 commit comments

Comments
 (0)