Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
async.mapLimit(src, EXEC_LIMIT, function (filepath, cb) {
let stdout = '';
const proc = clangFormat.spawnClangFormat([ '-style=file', '-output-replacements-xml', filepath ], function () {}, 'pipe');
proc.stdout.on('data', function (data) {
stdout += data.toString();
});
proc.on('close', function (exit) {
if (exit) {
grunt.log.warn('Exit code: ' + exit);
grunt.fail.fatal(stdout);
cb(exit);
}
const modified = stdout.replace(/\r?\n/g, '');
if (modified !== '') {
// Record failure, because formatting is bad.
// TODO Get the correctly formatted source? Give more details on the bad sections?
errors.push(new Error('Formatting incorrect on "' + filepath + '", proposed changes: ' + stdout));
}