oxc/.github/renovate.json

35 lines
864 B
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"ignorePaths": [
"crates/oxc_linter/fixtures/**"
],
"packageRules": [
{
"groupName": "github-actions",
"matchManagers": ["github-actions"],
"schedule": ["on monday"],
"assignees": ["@Boshen"]
},
{
"groupName": "cargo",
"matchManagers": ["cargo"],
"schedule": ["on monday"],
"assignees": ["@Boshen"],
"ignoreDeps": ["textwrap", "owo-colors", "syn"]
},
{
"groupName": "website",
"includePaths": ["website/**"],
"matchManagers": ["npm"],
"schedule": ["on monday"],
"assignees": ["@Boshen"]
},
{
"groupName": "vscode",
"includePaths": ["editors/vscode/**"],
"matchManagers": ["npm"],
"schedule": ["on monday"],
"assignees": ["@Boshen"]
}
]
}