Skip to content

Commit

Permalink
Updated Kotlin & Detekt
Browse files Browse the repository at this point in the history
  • Loading branch information
LachlanMcKee committed Sep 23, 2024
1 parent 98329e3 commit 67bcdd2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions detekt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,7 @@ naming:
FunctionNaming:
active: true
functionPattern: '^([a-z$][a-zA-Z$0-9]*)|(`.*`)$'
ignoreAnnotated: [ 'Composable' ]
VariableNaming:
active: true
variablePattern: '^(_)?[a-z$][a-zA-Z$0-9]*$'
Expand Down
4 changes: 2 additions & 2 deletions gradle/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ while (!rootDirectory.listFiles().any { it.isDirectory() && it.name == ".github"
rootDirectory = rootDirectory.parentFile
}

def kotlinVersion = '1.8.10'
def kotlinVersion = '1.9.21'

def versions = [
dagger : '2.45',
Expand Down Expand Up @@ -65,7 +65,7 @@ def build = [
android : agp,
kotlin : "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}",
mavenPublish: 'com.vanniktech:gradle-maven-publish-plugin:0.15.1',
detekt : 'io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.17.1',
detekt : 'io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.21.0',
jacoco : "org.jacoco:org.jacoco.core:${versions.jacoco}"
]
]
Expand Down

0 comments on commit 67bcdd2

Please sign in to comment.