Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"packageRules": [
{
"description": "Group eslint and @typescript-eslint together — they must update as a unit because @typescript-eslint has a peer dep on specific eslint and typescript versions",
"matchPackageNames": [
"eslint",
"@typescript-eslint/eslint-plugin",
"@typescript-eslint/parser"
],
"groupName": "eslint monorepo",
"groupSlug": "eslint-monorepo"
}
]
}
Comment on lines +1 to +15
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

A renovate.json file already exists in the root directory. Renovate typically only processes a single configuration file and gives precedence to the one in the root, meaning this new file will be ignored. \n\nAdditionally, this file lacks the extends field and other global settings defined in the root configuration. If Renovate were to use this file instead of the root one, it would lose all existing settings like automerge and dashboard configuration. To fix this, merge the new packageRules entry into the existing root renovate.json and remove this file.

Loading