Skip to content
This repository has been archived by the owner on Feb 9, 2023. It is now read-only.

Commit

Permalink
Merge pull request #127 from eygraber/renovate/detekt
Browse files Browse the repository at this point in the history
Update detekt to v1.20.0
  • Loading branch information
eygraber committed May 9, 2022
2 parents ef4eb45 + 1ef6469 commit 762c3e0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ internal fun DateInputText(
minWidth: Dp,
isError: Boolean
) {
val text = value?.toString() ?: ""
val text = value?.toString().orEmpty()
val modifier = Modifier.width(minWidth)

val onTextChange = { newText: String ->
Expand Down
2 changes: 1 addition & 1 deletion detekt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ naming:
NoNameShadowing:
active: true
NonBooleanPropertyPrefixedWithIs:
active: true
active: false
excludes: ['**/test/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**']
ObjectPropertyNaming:
active: true
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ androidx-core = "1.8.0-beta01"
androidx-fragment = "1.4.1"
androidx-test = "1.4.1-alpha06"

detekt = "1.19.0"
detekt = "1.20.0"
detektEygraber = "1.0.11"

jdk = "11"
Expand Down

0 comments on commit 762c3e0

Please sign in to comment.