Skip to content

Commit

Permalink
Migrate renovate config (#1210)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Aug 23, 2024
1 parent f7ebd2e commit 15235c8
Showing 1 changed file with 33 additions and 42 deletions.
75 changes: 33 additions & 42 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
@@ -1,52 +1,43 @@
// Renovate supports JSON5 (see https://docs.renovatebot.com/configuration-options/#configuration-options)
// which allows comments (finally). See https://json5.org/.

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"configMigration": true,

"extends": [
"config:recommended",
":disableRateLimiting"
$schema: 'https://docs.renovatebot.com/renovate-schema.json',
configMigration: true,
extends: [
'config:recommended',
':disableRateLimiting',
],

"automerge": true,
"postUpdateOptions": [
"yarnDedupeHighest"
automerge: true,
postUpdateOptions: [
'yarnDedupeHighest',
],
"rangeStrategy": "pin",
"rebaseWhen": "conflicted",
"semanticCommits": "disabled",

"packageRules": [
rangeStrategy: 'pin',
rebaseWhen: 'conflicted',
semanticCommits: 'disabled',
packageRules: [
{
"groupName": "Redwood",
"matchPackagePatterns": [
"^@redwoodjs/"
groupName: 'Redwood',
followTag: 'rc',
ignoreUnstable: false,
matchPackageNames: [
'/^@redwoodjs//',
],

"followTag": "rc",
"ignoreUnstable": false
},

{
"groupName": "Engines",
"matchDepTypes": [
"engines"
groupName: 'Engines',
matchDepTypes: [
'engines',
],
"enabled": false
}
enabled: false,
},
],
ignoreDeps: [
'@netlify/zip-it-and-ship-it',
'archiver',
'fs-extra',
'node',
'humanize-string',
'prettier-plugin-tailwindcss',
'prop-types',
'react',
'react-dom',
],

"ignoreDeps": [
"@netlify/zip-it-and-ship-it",
"archiver",
"fs-extra",
"node",
"humanize-string",
"prettier-plugin-tailwindcss",
"prop-types",
"react",
"react-dom"
]
}

0 comments on commit 15235c8

Please sign in to comment.