AI / RenovateBot Interview Questions
What is Renovate's 'ignorePaths' and 'includePaths' and when do you need them?
By default Renovate scans every file matching a known dependency pattern. ignorePaths excludes specific paths; includePaths restricts scanning to only specific paths.
{ "ignorePaths": [ "**/node_modules/**", "vendor/**", "legacy/**", "docs/**", "**/test/fixtures/**" ], "includePaths": [ "src/**", "packages/*/package.json", ".github/workflows/**" ], "packageRules": [ { "matchFileNames": ["docs/example/package.json"], "enabled": false } ] }
More Related questions...