workspace-tools/renovate.json5

25 строки
945 B
Plaintext
Исходник Обычный вид История

2022-07-22 00:57:58 +03:00
// Available options:
// https://docs.renovatebot.com/configuration-options/
// NOTE: Renovate only allows comments in .json5 files, but this isn't well-supported by
// Prettier + VS Code. Workaround is to configure tools to treat the file as JSONC
// (in .prettierrc and .vscode/settings.json).
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
2022-07-26 13:25:24 +03:00
// Basic recommended config + generate change files
"github>ecraig12345/renovate-config:beachballLibraryRecommended",
// Auto-merge PRs only affecting @types devDependencies
"github>ecraig12345/renovate-config:autoUpdateTypes",
2022-07-26 13:25:24 +03:00
// Dedupe after updates, and periodically re-create the entire lock file so all deps are updated to latest
"github>ecraig12345/renovate-config:keepFresh"
2022-07-22 00:57:58 +03:00
],
// Use this label on all PRs
"labels": ["renovate"],
// Limit 5 PRs per hour (could be changed later based on preference)
"prHourlyLimit": 5
2022-07-22 00:57:58 +03:00
}