Skip to content

Commit 43c6f20

Browse files
committed
first commit of version 1.0.2
0 parents  commit 43c6f20

24 files changed

+1401
-0
lines changed

.gitignore

+186
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,186 @@
1+
2+
# Created by https://www.gitignore.io/api/java,linux,macos,gradle,kotlin,windows,intellij
3+
4+
### Intellij ###
5+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
6+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
7+
8+
# User-specific stuff:
9+
.idea/**/workspace.xml
10+
.idea/**/tasks.xml
11+
.idea/dictionaries
12+
13+
# Sensitive or high-churn files:
14+
.idea/**/dataSources/
15+
.idea/**/dataSources.ids
16+
.idea/**/dataSources.xml
17+
.idea/**/dataSources.local.xml
18+
.idea/**/sqlDataSources.xml
19+
.idea/**/dynamic.xml
20+
.idea/**/uiDesigner.xml
21+
22+
# Gradle:
23+
.idea/**/gradle.xml
24+
.idea/**/libraries
25+
26+
# CMake
27+
cmake-build-debug/
28+
29+
# Mongo Explorer plugin:
30+
.idea/**/mongoSettings.xml
31+
32+
## File-based project format:
33+
*.iws
34+
35+
## Plugin-specific files:
36+
37+
# IntelliJ
38+
/out/
39+
40+
# mpeltonen/sbt-idea plugin
41+
.idea_modules/
42+
43+
# JIRA plugin
44+
atlassian-ide-plugin.xml
45+
46+
# Cursive Clojure plugin
47+
.idea/replstate.xml
48+
49+
# Ruby plugin and RubyMine
50+
/.rakeTasks
51+
52+
# Crashlytics plugin (for Android Studio and IntelliJ)
53+
com_crashlytics_export_strings.xml
54+
crashlytics.properties
55+
crashlytics-build.properties
56+
fabric.properties
57+
58+
### Intellij Patch ###
59+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
60+
61+
# *.iml
62+
# modules.xml
63+
# .idea/misc.xml
64+
# *.ipr
65+
66+
# Sonarlint plugin
67+
.idea/sonarlint
68+
69+
### Java ###
70+
# Compiled class file
71+
*.class
72+
73+
# Log file
74+
*.log
75+
76+
# BlueJ files
77+
*.ctxt
78+
79+
# Mobile Tools for Java (J2ME)
80+
.mtj.tmp/
81+
82+
# Package Files #
83+
*.jar
84+
*.war
85+
*.ear
86+
*.zip
87+
*.tar.gz
88+
*.rar
89+
90+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
91+
hs_err_pid*
92+
93+
### Kotlin ###
94+
# Compiled class file
95+
96+
# Log file
97+
98+
# BlueJ files
99+
100+
# Mobile Tools for Java (J2ME)
101+
102+
# Package Files #
103+
104+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
105+
106+
### Linux ###
107+
*~
108+
109+
# temporary files which can be created if a process still has a handle open of a deleted file
110+
.fuse_hidden*
111+
112+
# KDE directory preferences
113+
.directory
114+
115+
# Linux trash folder which might appear on any partition or disk
116+
.Trash-*
117+
118+
# .nfs files are created when an open file is removed but is still being accessed
119+
.nfs*
120+
121+
### macOS ###
122+
*.DS_Store
123+
.AppleDouble
124+
.LSOverride
125+
126+
# Icon must end with two \r
127+
Icon
128+
129+
# Thumbnails
130+
._*
131+
132+
# Files that might appear in the root of a volume
133+
.DocumentRevisions-V100
134+
.fseventsd
135+
.Spotlight-V100
136+
.TemporaryItems
137+
.Trashes
138+
.VolumeIcon.icns
139+
.com.apple.timemachine.donotpresent
140+
141+
# Directories potentially created on remote AFP share
142+
.AppleDB
143+
.AppleDesktop
144+
Network Trash Folder
145+
Temporary Items
146+
.apdisk
147+
148+
### Windows ###
149+
# Windows thumbnail cache files
150+
Thumbs.db
151+
ehthumbs.db
152+
ehthumbs_vista.db
153+
154+
# Folder config file
155+
Desktop.ini
156+
157+
# Recycle Bin used on file shares
158+
$RECYCLE.BIN/
159+
160+
# Windows Installer files
161+
*.cab
162+
*.msi
163+
*.msm
164+
*.msp
165+
166+
# Windows shortcuts
167+
*.lnk
168+
169+
### Gradle ###
170+
.gradle
171+
**/build/
172+
173+
# Ignore Gradle GUI config
174+
gradle-app.setting
175+
176+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
177+
!gradle-wrapper.jar
178+
179+
# Cache of project
180+
.gradletasknamecache
181+
182+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
183+
# gradle/wrapper/gradle-wrapper.properties
184+
185+
186+
# End of https://www.gitignore.io/api/java,linux,macos,gradle,kotlin,windows,intellij

.idea/artifacts/moztw_space_bot_jar.xml

+56
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/compiler.xml

+9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/kotlinc.xml

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules/moztw-space-bot.iml

+13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)