-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
rewriting the whole project in kotlin
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# | ||
# https://help.github.com/articles/dealing-with-line-endings/ | ||
# | ||
# Linux start script should use lf | ||
/gradlew text eol=lf | ||
|
||
# These are Windows script files and should use crlf | ||
*.bat text eol=crlf | ||
|
||
# Binary files should be left untouched | ||
*.jar binary | ||
|
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,67 @@ | ||
# macOS | ||
.DS_Store | ||
.idea/shelf | ||
/confluence/target | ||
/dependencies/repo | ||
/android.tests.dependencies | ||
/dependencies/android.tests.dependencies | ||
/dist | ||
/local | ||
/gh-pages | ||
/ideaSDK | ||
/clionSDK | ||
/android-studio/sdk | ||
out/ | ||
/tmp | ||
/intellij | ||
workspace.xml | ||
*.versionsBackup | ||
/idea/testData/debugger/tinyApp/classes* | ||
/jps-plugin/testData/kannotator | ||
/js/js.translator/testData/out/ | ||
/js/js.translator/testData/out-min/ | ||
/js/js.translator/testData/out-pir/ | ||
.gradle/ | ||
build/ | ||
!**/src/**/build | ||
!**/test/**/build | ||
*.iml | ||
!**/testData/**/*.iml | ||
.idea/artifacts | ||
.idea/remote-targets.xml | ||
.idea/libraries/Gradle*.xml | ||
.idea/libraries/Maven*.xml | ||
.idea/modules | ||
.idea/runConfigurations/JPS_*.xml | ||
.idea/runConfigurations/_JPS_*.xml | ||
.idea/runConfigurations/PILL_*.xml | ||
.idea/runConfigurations/_FP_*.xml | ||
.idea/runConfigurations/_MT_*.xml | ||
.idea/libraries | ||
.idea/modules.xml | ||
.idea/gradle.xml | ||
.idea/compiler.xml | ||
.idea/inspectionProfiles/profiles_settings.xml | ||
.idea/.name | ||
.idea/jarRepositories.xml | ||
.idea/csv-plugin.xml | ||
.idea/libraries-with-intellij-classes.xml | ||
.idea/misc.xml | ||
.idea/protoeditor.xml | ||
.idea/uiDesigner.xml | ||
node_modules/ | ||
.rpt2_cache/ | ||
local.properties | ||
buildSrcTmp/ | ||
distTmp/ | ||
outTmp/ | ||
/test.output | ||
/kotlin-native/dist | ||
kotlin-ide/ | ||
.kotlin/ | ||
.teamcity/ | ||
|
||
# sbt specific | ||
dist/* | ||
target/ | ||
lib_managed/ | ||
src_managed/ | ||
project/boot/ | ||
project/plugins/project/ | ||
project/local-plugins.sbt | ||
.history | ||
.ensime | ||
.ensime_cache/ | ||
.sbt-scripted/ | ||
local.sbt | ||
.sbt/ | ||
|
||
# Bloop | ||
.bsp | ||
|
||
# VS Code | ||
.vscode/ | ||
|
||
# Metals | ||
.bloop/ | ||
.metals/ | ||
metals.sbt | ||
|
||
# IDEA | ||
.idea | ||
.idea_modules | ||
/.worksheet/ | ||
# logs | ||
*.log | ||
|
||
# local config override files | ||
.kafkakewl-*overrides.conf | ||
.kafkakewl-*overrides-application.yaml |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/* do not remove or change this comment as this indicates the top of the file for the spotless licenseHeaderFile | ||
* | ||
*/ | ||
|
||
plugins { | ||
id("com.diffplug.spotless") | ||
kotlin("plugin.serialization") | ||
} | ||
|
||
subprojects { | ||
apply(plugin = "com.diffplug.spotless") | ||
apply(plugin = "org.jetbrains.kotlin.plugin.serialization") | ||
|
||
spotless { | ||
kotlin { | ||
trimTrailingWhitespace() | ||
indentWithSpaces() | ||
endWithNewline() | ||
licenseHeaderFile(rootProject.file("license-header.kt")) | ||
} | ||
kotlinGradle { | ||
target("*.gradle.kts") | ||
trimTrailingWhitespace() | ||
indentWithSpaces() | ||
endWithNewline() | ||
licenseHeaderFile(rootProject.file("license-header.kt"), "/\\* do not remove or change") | ||
} | ||
} | ||
} |