Skip to content

Commit

Permalink
make Renovate extend the config:best-practices preset
Browse files Browse the repository at this point in the history
  • Loading branch information
RBusarow committed Feb 6, 2024
1 parent 17d832a commit 6f2ce3a
Showing 1 changed file with 15 additions and 13 deletions.
28 changes: 15 additions & 13 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,26 @@
{
"$schema" : "https://docs.renovatebot.com/renovate-schema.json",
"extends" : [
"config:base"
"config:best-practices"
],
"rebaseWhen" : "conflicted",
"rebaseLabel" : "rebase",
"packageRules" : [
{
"matchPackagePatterns" : [
"^org\\.jetbrains\\.kotlin:(?:[\\w-]+)$",
"^androidx\\.compose\\.compiler:(?:[\\w-]+)$",
"^com\\.google\\.devtools\\.ksp:(?:[\\w-]+)$"
],
"groupName" : "Kotlin and compiler plugins"
"groupName" : "Kotlin and compiler plugins",
"matchPackagePrefixes" : [
"androidx.compose.compiler:",
"com.google.devtools.ksp:",
"org.jetbrains.kotlin:"
]
},
{
"matchPackagePatterns" : [
"^androidx\\.activity:(?:[\\w-]+)$",
"^androidx\\.fragment:(?:[\\w-]+)$",
"^androidx\\.lifecycle:(?:[\\w-]+)$"
],
"groupName" : "androidx lifecycle and downstream libs"
"groupName" : "androidx lifecycle and downstream libs",
"matchPackagePrefixes" : [
"androidx.activity:",
"androidx.fragment:",
"androidx.lifecycle:"
]
}
]
}

0 comments on commit 6f2ce3a

Please sign in to comment.