mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-11 14:36:25 +00:00
6c46ddf20e
packageRules selectors should only ever be inside a packageRule object, or at the top level of a preset. This feature enforces this rule with a validation check. Closes #1773
70 lines
1.9 KiB
JavaScript
70 lines
1.9 KiB
JavaScript
#!/usr/bin/env node
|
|
|
|
const fs = require('fs-extra');
|
|
const { validateConfig } = require('../lib/config/validation');
|
|
const { massageConfig } = require('../lib/config/massage');
|
|
const { initLogger } = require('../lib/logger');
|
|
|
|
initLogger();
|
|
|
|
/* eslint-disable no-console */
|
|
|
|
let returnVal = 0;
|
|
|
|
async function validate(desc, config, isPreset = false) {
|
|
const res = await validateConfig(massageConfig(config), isPreset);
|
|
if (res.errors.length) {
|
|
console.log(
|
|
`${desc} contains errors:\n\n${JSON.stringify(res.errors, null, 2)}`
|
|
);
|
|
returnVal = 1;
|
|
}
|
|
if (res.warnings.length) {
|
|
console.log(
|
|
`${desc} contains warnings:\n\n${JSON.stringify(res.warnings, null, 2)}`
|
|
);
|
|
returnVal = 1;
|
|
}
|
|
}
|
|
|
|
(async () => {
|
|
const renovateConfigFiles = [
|
|
'renovate.json',
|
|
'.renovaterc',
|
|
'.renovaterc.json',
|
|
];
|
|
for (const file of renovateConfigFiles) {
|
|
try {
|
|
const rawContent = fs.readFileSync(file, 'utf8');
|
|
console.log(`Validating ${file}`);
|
|
try {
|
|
const jsonContent = JSON.parse(rawContent);
|
|
await validate(file, jsonContent);
|
|
} catch (err) {
|
|
console.log(`${file} is not valid JSON`);
|
|
returnVal = 1;
|
|
}
|
|
} catch (err) {
|
|
// file does not exist
|
|
}
|
|
}
|
|
try {
|
|
const pkgJson = JSON.parse(fs.readFileSync('package.json', 'utf8'));
|
|
if (pkgJson.renovate) {
|
|
console.log(`Validating package.json > renovate`);
|
|
await validate('package.json > renovate', pkgJson.renovate);
|
|
}
|
|
if (pkgJson['renovate-config']) {
|
|
console.log(`Validating package.json > renovate-config`);
|
|
for (const presetConfig of Object.values(pkgJson['renovate-config'])) {
|
|
await validate('package.json > renovate-config', presetConfig, true);
|
|
}
|
|
}
|
|
} catch (err) {
|
|
// ignore
|
|
}
|
|
if (returnVal !== 0) {
|
|
process.exit(returnVal);
|
|
}
|
|
console.log('OK');
|
|
})();
|