Skip to content

Commit 02dc3c5

Browse files
committed
Initial commit
0 parents  commit 02dc3c5

File tree

11 files changed

+456
-0
lines changed

11 files changed

+456
-0
lines changed

.editorconfig

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# https://github.com/detekt/detekt/blob/master/.editorconfig
2+
# top-most EditorConfig file
3+
root = true
4+
5+
[*]
6+
insert_final_newline = true
7+
8+
[*.kt]
9+
indent_style = space
10+
11+
[*.yml]
12+
indent_style = space
13+
indent_size = 2
14+
15+
[*.md]
16+
indent_style = space
17+
indent_size = 4

.gitattributes

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# https://github.com/detekt/detekt/blob/master/.gitattributes
2+
# Always use crlf line endings Gradle .bat file
3+
gradlew.bat text eol=crlf
4+
5+
# Mark Gradle wrapper as a binary
6+
gradle/wrapper/gradle-wrapper.jar binary
7+
8+
*.md eol=lf
9+
*.html eol=lf
10+
*.yml eol=lf

.gitignore

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

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# koncorda
2+
3+
A small DSL for quickly bot creation with JDA.

build.gradle.kts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
2+
3+
plugins {
4+
kotlin("jvm") version "1.4.21"
5+
}
6+
7+
group = "org.yttr"
8+
version = "0.1.0"
9+
10+
repositories {
11+
mavenCentral()
12+
}
13+
14+
tasks.withType<KotlinCompile>() {
15+
kotlinOptions.jvmTarget = "1.8"
16+
}

gradle.properties

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# suppress inspection "UnusedProperty" for whole file
2+
kotlin.code.style=official

gradle/wrapper/gradle-wrapper.jar

57.8 KB
Binary file not shown.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-bin.zip
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists

gradlew

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

0 commit comments

Comments
 (0)