hedgedoc/renovate.json
Erik Michelson 4be74f885a
Updated test-class matching rule of renovate (#293)
As seen in multiple PRs that renovate raised today, the @testing-library/ packages are not bundled in the 'packages:jsTest' pre-defined group. As they aren't relevant to be separated, this commit changes the config of renovate to treat them as one big PR in the future.
2020-06-27 11:41:37 +02:00

42 lines
752 B
JSON

{
"extends": [
"config:base"
],
"labels": [
"dependencies"
],
"packageRules": [
{
"extends": "packages:linters",
"groupName": "linters"
},
{
"extends": "monorepo:typescript-eslint",
"groupName": "typescript-eslint monorepo"
},
{
"extends": "monorepo:react",
"groupName": "react monorepo"
},
{
"extends": "monorepo:reactrouter",
"groupName": "reactrouter monorepo"
},
{
"groupName": "definitelyTyped",
"packagePatterns": [
"^@types/"
]
},
{
"groupName": "JS test packages",
"packagePatterns": [
"^@testing-library/"
]
}
],
"prHourlyLimit": 0,
"schedule": [
"on Saturday"
]
}