Skip to content

Commit

Permalink
Exclude Prettier from grouped Renovate update (#200)
Browse files Browse the repository at this point in the history
Prettier is now updated independenty of other packages by Renovate.
This is because minor and patch updates can sometimes break the types
used by this plugin.
  • Loading branch information
Gudahtt committed Mar 16, 2024
1 parent dd4de10 commit fc385ca
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,18 @@
minimumReleaseAge: '30 days',
packageRules: [
{
excludePackageNames: ['typescript'],
excludePackageNames: ['prettier','typescript'],
groupName: 'Minor',
matchPackagePatterns: ['*'],
matchUpdateTypes: ['patch', 'minor'],
},
{
groupName: 'ESLint config',
matchPackagePatterns: ['^@metamask/eslint-config*'],
},
{
groupName: 'Prettier',
matchPackageNames: ['prettier'],
},
{
groupName: 'TypeScript',
Expand Down

0 comments on commit fc385ca

Please sign in to comment.