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
10 changes: 6 additions & 4 deletions renovate.json
Original file line numberDiff line numberDiff line change
Expand Up@@ -2,8 +2,10 @@
"extends": ["group:recommended", "group:monorepos"],
"reviewers": ["team:dev"],
"rangeStrategy": "pin",
"node": {
"supportPolicy": ["active"],
"rangeStrategy": "bump"
}
"packageRules": [
{
"packageNames": ["node"],
"enabled": false
}

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.

So this is saying:

  1. Find any package named "node"
  2. Apply the following special rules to it:
  3. The only special rule is to entirely disable renovate for it.

Is that right?

Copy link
Copy Markdown
ContributorAuthor

Choose a reason for hiding this comment

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

Yes that is my understanding

]
}