From f98a2f3cd2104b22221c0c5a63dc163ca91a430a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 8 Jan 2025 14:27:40 +0000 Subject: [PATCH] Migrate renovate config (#455) * Migrate config renovate.json5 * Update renovate.json5 --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Jake Wharton --- renovate.json5 | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/renovate.json5 b/renovate.json5 index 3334868a..552a5216 100644 --- a/renovate.json5 +++ b/renovate.json5 @@ -1,16 +1,16 @@ { - "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "config:base" + $schema: 'https://docs.renovatebot.com/renovate-schema.json', + extends: [ + 'config:recommended', ], - "packageRules": [ + packageRules: [ + // Compiler plugins are tightly coupled to Kotlin version. { - // Compiler plugins are tightly coupled to Kotlin version - "groupName": "Kotlin", - "matchPackagePrefixes": [ - "androidx.compose.compiler", - "dev.drewhamilton.poko", - "org.jetbrains.kotlin", + groupName: 'Kotlin', + matchPackageNames: [ + 'androidx.compose.compiler{/,}**', + 'dev.drewhamilton.poko{/,}**', + 'org.jetbrains.kotlin{/,}**', ], }, ],