{ "extends": ["config:base"], "enabledManagers": ["cargo", "npm"], "semanticCommitType": "chore", "labels": ["dependencies"], "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 }, { "description": "Prevent unwanted minor/patch Cargo.toml updates", "matchManagers": ["cargo"], "rangeStrategy": "update-lockfile" }, { "description": "Prevent spammy minor/patch Cargo.lock updates", "matchManagers": ["cargo"], "matchUpdateTypes": ["minor", "patch"], "matchCurrentVersion": "!/^0/", "enabled": false }, { "description": "Prevent spammy patch Cargo.lock updates for 0.x deps", "matchManagers": ["cargo"], "matchUpdateTypes": ["patch"], "matchCurrentVersion": "/^0/", "enabled": false } ], "postUpdateOptions": ["pnpmDedupe"] }