Skip to content

Commit f8767db

Browse files
authored
Merge pull request #3 from HawkDiscord/feature/docs
Command update
2 parents e7aaab2 + e52e4cf commit f8767db

641 files changed

Lines changed: 19059 additions & 7784 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 140 additions & 140 deletions
Original file line numberDiff line numberDiff line change
@@ -1,141 +1,141 @@
1-
2-
# Created by https://www.gitignore.io/api/java,gradle,kotlin,intellij+iml
3-
# Edit at https://www.gitignore.io/?templates=java,gradle,kotlin,intellij+iml
4-
5-
### Intellij+iml ###
6-
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
7-
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
8-
9-
# User-specific stuff
10-
.idea/**/workspace.xml
11-
.idea/**/tasks.xml
12-
.idea/**/usage.statistics.xml
13-
.idea/**/dictionaries
14-
.idea/**/shelf
15-
16-
# Generated files
17-
.idea/**/contentModel.xml
18-
19-
# Sensitive or high-churn files
20-
.idea/**/dataSources/
21-
.idea/**/dataSources.ids
22-
.idea/**/dataSources.local.xml
23-
.idea/**/sqlDataSources.xml
24-
.idea/**/dynamic.xml
25-
.idea/**/uiDesigner.xml
26-
.idea/**/dbnavigator.xml
27-
28-
# Gradle
29-
.idea/**/gradle.xml
30-
.idea/**/libraries
31-
32-
# Gradle and Maven with auto-import
33-
# When using Gradle or Maven with auto-import, you should exclude module files,
34-
# since they will be recreated, and may cause churn. Uncomment if using
35-
# auto-import.
36-
# .idea/modules.xml
37-
# .idea/*.iml
38-
# .idea/modules
39-
40-
# CMake
41-
cmake-build-*/
42-
43-
# Mongo Explorer plugin
44-
.idea/**/mongoSettings.xml
45-
46-
# File-based project format
47-
*.iws
48-
49-
# IntelliJ
50-
out/
51-
52-
# mpeltonen/sbt-idea plugin
53-
.idea_modules/
54-
55-
# JIRA plugin
56-
atlassian-ide-plugin.xml
57-
58-
# Cursive Clojure plugin
59-
.idea/replstate.xml
60-
61-
# Crashlytics plugin (for Android Studio and IntelliJ)
62-
com_crashlytics_export_strings.xml
63-
crashlytics.properties
64-
crashlytics-build.properties
65-
fabric.properties
66-
67-
# Editor-based Rest Client
68-
.idea/httpRequests
69-
70-
# Android studio 3.1+ serialized cache file
71-
.idea/caches/build_file_checksums.ser
72-
73-
# JetBrains templates
74-
**___jb_tmp___
75-
76-
### Intellij+iml Patch ###
77-
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
78-
79-
*.iml
80-
modules.xml
81-
.idea/misc.xml
82-
*.ipr
83-
84-
### Java ###
85-
# Compiled class file
86-
*.class
87-
88-
# Log file
89-
*.log
90-
91-
# BlueJ files
92-
*.ctxt
93-
94-
# Mobile Tools for Java (J2ME)
95-
.mtj.tmp/
96-
97-
# Package Files #
98-
*.jar
99-
*.war
100-
*.nar
101-
*.ear
102-
*.zip
103-
*.tar.gz
104-
*.rar
105-
106-
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
107-
hs_err_pid*
108-
109-
### Kotlin ###
110-
# Compiled class file
111-
112-
# Log file
113-
114-
# BlueJ files
115-
116-
# Mobile Tools for Java (J2ME)
117-
118-
# Package Files #
119-
120-
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
121-
122-
### Gradle ###
123-
.gradle
124-
build/
125-
126-
# Ignore Gradle GUI config
127-
gradle-app.setting
128-
129-
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
130-
!gradle-wrapper.jar
131-
132-
# Cache of project
133-
.gradletasknamecache
134-
135-
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
136-
# gradle/wrapper/gradle-wrapper.properties
137-
138-
### Gradle Patch ###
139-
**/build/
140-
1+
2+
# Created by https://www.gitignore.io/api/java,gradle,kotlin,intellij+iml
3+
# Edit at https://www.gitignore.io/?templates=java,gradle,kotlin,intellij+iml
4+
5+
### Intellij+iml ###
6+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
7+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
8+
9+
# User-specific stuff
10+
.idea/**/workspace.xml
11+
.idea/**/tasks.xml
12+
.idea/**/usage.statistics.xml
13+
.idea/**/dictionaries
14+
.idea/**/shelf
15+
16+
# Generated files
17+
.idea/**/contentModel.xml
18+
19+
# Sensitive or high-churn files
20+
.idea/**/dataSources/
21+
.idea/**/dataSources.ids
22+
.idea/**/dataSources.local.xml
23+
.idea/**/sqlDataSources.xml
24+
.idea/**/dynamic.xml
25+
.idea/**/uiDesigner.xml
26+
.idea/**/dbnavigator.xml
27+
28+
# Gradle
29+
.idea/**/gradle.xml
30+
.idea/**/libraries
31+
32+
# Gradle and Maven with auto-import
33+
# When using Gradle or Maven with auto-import, you should exclude module files,
34+
# since they will be recreated, and may cause churn. Uncomment if using
35+
# auto-import.
36+
# .idea/modules.xml
37+
# .idea/*.iml
38+
# .idea/modules
39+
40+
# CMake
41+
cmake-build-*/
42+
43+
# Mongo Explorer plugin
44+
.idea/**/mongoSettings.xml
45+
46+
# File-based project format
47+
*.iws
48+
49+
# IntelliJ
50+
out/
51+
52+
# mpeltonen/sbt-idea plugin
53+
.idea_modules/
54+
55+
# JIRA plugin
56+
atlassian-ide-plugin.xml
57+
58+
# Cursive Clojure plugin
59+
.idea/replstate.xml
60+
61+
# Crashlytics plugin (for Android Studio and IntelliJ)
62+
com_crashlytics_export_strings.xml
63+
crashlytics.properties
64+
crashlytics-build.properties
65+
fabric.properties
66+
67+
# Editor-based Rest Client
68+
.idea/httpRequests
69+
70+
# Android studio 3.1+ serialized cache file
71+
.idea/caches/build_file_checksums.ser
72+
73+
# JetBrains templates
74+
**___jb_tmp___
75+
76+
### Intellij+iml Patch ###
77+
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
78+
79+
*.iml
80+
modules.xml
81+
.idea/misc.xml
82+
*.ipr
83+
84+
### Java ###
85+
# Compiled class file
86+
*.class
87+
88+
# Log file
89+
*.log
90+
91+
# BlueJ files
92+
*.ctxt
93+
94+
# Mobile Tools for Java (J2ME)
95+
.mtj.tmp/
96+
97+
# Package Files #
98+
*.jar
99+
*.war
100+
*.nar
101+
*.ear
102+
*.zip
103+
*.tar.gz
104+
*.rar
105+
106+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
107+
hs_err_pid*
108+
109+
### Kotlin ###
110+
# Compiled class file
111+
112+
# Log file
113+
114+
# BlueJ files
115+
116+
# Mobile Tools for Java (J2ME)
117+
118+
# Package Files #
119+
120+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
121+
122+
### Gradle ###
123+
.gradle
124+
build/
125+
126+
# Ignore Gradle GUI config
127+
gradle-app.setting
128+
129+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
130+
!gradle-wrapper.jar
131+
132+
# Cache of project
133+
.gradletasknamecache
134+
135+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
136+
# gradle/wrapper/gradle-wrapper.properties
137+
138+
### Gradle Patch ###
139+
**/build/
140+
141141
# End of https://www.gitignore.io/api/java,gradle,kotlin,intellij+iml

.idea/checkstyle-idea.xml

Lines changed: 16 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/copyright/profiles_settings.xml

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/copyright/regnum.xml

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/encodings.xml

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/kotlinc.xml

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
group = "me.schlaubi"
2-
version = "1.0-SNAPSHOT"
3-
1+
group = "me.schlaubi"
2+
version = "1.0-SNAPSHOT"
3+

0 commit comments

Comments
 (0)