Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ buildscript {
dependencies {
classpath("com.android.tools.build:gradle:7.2.1")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
classpath("com.diffplug.spotless:spotless-plugin-gradle:6.7.2")
classpath("com.diffplug.spotless:spotless-plugin-gradle:6.8.0")
classpath("dev.ahmedmourad.nocopy:nocopy-gradle-plugin:1.4.0")
classpath("org.jacoco:org.jacoco.core:0.8.8")
classpath("com.vanniktech:gradle-android-junit-jacoco-plugin:0.17.0-SNAPSHOT")
Expand Down Expand Up @@ -54,7 +54,8 @@ subprojects {
"ij_kotlin_imports_layout",
"indent_size",
"end_of_line",
"charset"
"charset",
"disabled_rules"
)

kotlin {
Expand All @@ -67,8 +68,9 @@ subprojects {
"end_of_line" to "lf",
"charset" to "utf-8",
"disabled_rules" to arrayOf(
"experimental:package-name",
"experimental:trailing-comma",
"package-name",
"trailing-comma",
"filename",
"experimental:type-parameter-list-spacing",
).joinToString(separator = ","),
)
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/deps.kt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import org.gradle.kotlin.dsl.project
import org.gradle.plugin.use.PluginDependenciesSpec
import org.gradle.plugin.use.PluginDependencySpec

const val ktlintVersion = "0.45.2"
const val ktlintVersion = "0.46.1"
const val kotlinVersion = "1.7.10"

object appConfig {
Expand Down