chore: ignore extra translations in lint (#451)

* chore: ignore extra translations in lint

Extra translations are removed automatically by Weblate

* chore: update detekt rules

More compose-friendly

* chore: update lint baselines
This commit is contained in:
Naveen Singh 2025-07-03 21:17:43 +05:30 committed by GitHub
parent aa129c7700
commit 251248f21a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 75 additions and 37 deletions

View file

@ -132,6 +132,9 @@ android {
detekt {
baseline = file("detekt-baseline.xml")
config.setFrom("$rootDir/detekt.yml")
buildUponDefaultConfig = true
allRules = false
}
dependencies {
@ -147,4 +150,5 @@ dependencies {
implementation(libs.kotlinx.serialization.json)
implementation(libs.bundles.room)
ksp(libs.androidx.room.compiler)
detektPlugins(libs.compose.detekt)
}