Skip to content

Commit bf75857

Browse files
authored
Merge pull request #51 from saschpe/saschpe.ktlint130
2 parents c15fc6f + 71b29c3 commit bf75857

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Log.error("Oops!")
4040
Log.assert("Something went wrong!", throwable)
4141
```
4242

43-
or, if you prefer:
43+
Or, if you prefer:
4444

4545
```kotlin
4646
Log.verbose { "FYI" }
@@ -170,8 +170,8 @@ val httpClient = HttpClient(CIO) {
170170

171171
## Users
172172

173-
- [Alpha+ Player - Unofficial player for Soma FM](https://play.google.com/store/apps/details?id=saschpe.alphaplus)
174-
- [GameOn - Get games on sale](https://play.google.com/store/apps/details?id=saschpe.gameon)
173+
- [Alpha+ Player Unofficial player for Soma FM](https://play.google.com/store/apps/details?id=saschpe.alphaplus)
174+
- [GameOn Get games on sale](https://play.google.com/store/apps/details?id=saschpe.gameon)
175175

176176
## License
177177

build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ spotless {
1010
}
1111
kotlin {
1212
target("**/*.kt")
13-
ktlint("1.2.1").setEditorConfigPath(".editorconfig")
13+
ktlint("1.3.0").setEditorConfigPath(".editorconfig")
1414
}
1515
kotlinGradle {
16-
ktlint("1.2.1").setEditorConfigPath(".editorconfig")
16+
ktlint("1.3.0").setEditorConfigPath(".editorconfig")
1717
}
1818
}
1919

log4k/src/jvmTest/kotlin/saschpe/log4k/FileLoggerTest.jvm.kt

+1-3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,4 @@ internal actual fun deleteRecursively(path: String) {
99
File(path).deleteRecursively()
1010
}
1111

12-
internal actual fun filesInFolder(path: String): Int {
13-
return File(path).listFiles()?.size ?: 0
14-
}
12+
internal actual fun filesInFolder(path: String): Int = File(path).listFiles()?.size ?: 0

0 commit comments

Comments
 (0)