Skip to content
Snippets Groups Projects
Commit 2bc93e28 authored by Rhys Arkins's avatar Rhys Arkins
Browse files

fix: correct nested config recommendation

parent 1352bbeb
No related branches found
Tags 12.25.1
No related merge requests found
......@@ -24,7 +24,7 @@ async function extractDependencies(content, packageFile, config) {
const error = new Error('config-validation');
error.configFile = packageFile;
error.validationError =
'Nested package.json must not contain renovate configuration. Please use pathRules in your main config instead.';
'Nested package.json must not contain renovate configuration. Please use `packageRules` with `paths` in your main config instead.';
throw error;
}
const packageJsonName = packageJson.name;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment