mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-21 11:26:15 +02:00
3dfdef0678
config:base uses a somewhat extensive ignore list: https://docs.renovatebot.com/presets-default/#ignoremodulesandtests so we have to overwrite it with the paths we actually want to ignore (not the examples dirs). I left the rest of the default list in there even though most of the entries don't and won't apply to this repo.
22 lines
474 B
JSON
22 lines
474 B
JSON
{
|
|
"extends": ["config:base"],
|
|
"enabledManagers": ["cargo", "npm"],
|
|
"ignorePaths": [
|
|
"**/node_modules/**",
|
|
"**/bower_components/**",
|
|
"**/vendor/**",
|
|
"**/__tests__/**",
|
|
"**/test/**",
|
|
"**/tests/**",
|
|
"**/__fixtures__/**"
|
|
],
|
|
"packageRules": [
|
|
{
|
|
"description": "Disable node/pnpm version updates",
|
|
"matchPackageNames": ["node", "pnpm"],
|
|
"matchDepTypes": ["engines", "packageManager"],
|
|
"enabled": false
|
|
}
|
|
]
|
|
}
|