Skip to content

Commit 07c59c1

Browse files
chore(config): migrate renovate config (#5308)
The Renovate config in this repository needs migrating. Typically this is because one or more configuration options you are using have been renamed. You don't need to merge this PR right away, because Renovate will continue to migrate these fields internally each time it runs. But later some of these fields may be fully deprecated and the migrations removed. So it's a good idea to merge this migration PR soon. #### [PLEASE NOTE](https://docs.renovatebot.com/configuration-options#configmigration): JSON5 config file migrated! All comments & trailing commas were removed. 🔕 **Ignore**: Close this PR and you won't be reminded about config migration again, but one day your current config may no longer be valid. ❓ Got questions? Does something look wrong to you? Please don't hesitate to [request help here](https://redirect.github.com/renovatebot/renovate/discussions). --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/simpledotorg/simple-android). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 740407c commit 07c59c1

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

renovate.json5

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
{
2-
"extends": [
3-
"config:base"
2+
extends: [
3+
'config:recommended',
44
],
5-
"ignoreDeps": [
5+
ignoreDeps: [
66
// Ignoring zxing update. Since update requires Java 8+ runtime.
7-
"com.google.zxing:core",
7+
'com.google.zxing:core',
88
// We only use this to turn off logs related to Mobius#ControllerStateBase in release app
9-
"ch.qos.logback:logback-classic",
10-
"com.itextpdf:itext7-core",
9+
'ch.qos.logback:logback-classic',
10+
'com.itextpdf:itext7-core',
1111
// Newer updates have API breaking changes, so won't be updating unless required
12-
"io.github.inflationx:viewpump"
12+
'io.github.inflationx:viewpump'
1313
],
14-
"packageRules": [
14+
packageRules: [
1515
{
16-
"groupName": "Kotlin, KSP and Compose Compiler",
17-
"groupSlug": "kotlin",
18-
"matchPackageNames": [
19-
"com.google.devtools.ksp",
20-
"org.jetbrains.kotlin:compose-compiler-gradle-plugin",
21-
"org.jetbrains.kotlin"
22-
]
23-
}
24-
]
16+
groupName: 'Kotlin, KSP and Compose Compiler',
17+
groupSlug: 'kotlin',
18+
matchPackageNames: [
19+
'com.google.devtools.ksp',
20+
'org.jetbrains.kotlin:compose-compiler-gradle-plugin',
21+
'org.jetbrains.kotlin',
22+
],
23+
},
24+
],
2525
}

0 commit comments

Comments
 (0)