diff --git a/renovate.json5 b/renovate.json5 index 1c062f583..353d56cc7 100644 --- a/renovate.json5 +++ b/renovate.json5 @@ -1,20 +1,22 @@ { - "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "config:base", + $schema: 'https://docs.renovatebot.com/renovate-schema.json', + extends: [ + 'config:recommended', ], - "packageRules": [ + packageRules: [ + // First release used Kotlin version + project version which sorts higher than new versions. { - // First release used Kotlin version + project version which sorts higher than new versions. - "matchPackageNames": ["co.touchlab:cklib-gradle-plugin"], - "allowedVersions": "!/1\\.5\\.31\\.2/", + matchPackageNames: [ + 'co.touchlab:cklib-gradle-plugin', + ], + allowedVersions: '!/1\\.5\\.31\\.2/', }, + // KSP is tightly coupled to Kotlin version. { - // KSP is tightly coupled to Kotlin version - "groupName": "Kotlin and KSP", - "matchPackagePrefixes": [ - "com.google.devtools.ksp", - "org.jetbrains.kotlin:kotlin", + groupName: 'Kotlin and KSP', + matchPackageNames: [ + 'com.google.devtools.ksp{/,}**', + 'org.jetbrains.kotlin:kotlin{/,}**', ], }, ],