chore(lint): re-enable clang-format on tools/

This commit is contained in:
Alex Eagle
2016-05-25 19:54:34 -07:00
parent 83723671af
commit 5936624d11
6 changed files with 30 additions and 42 deletions

View File

@ -79,9 +79,13 @@ function printWarning(issues) {
console.warn('');
console.warn(Array(110).join('!'));
console.warn('!!! Your environment is not in a good shape. Following issues were found:');
issues.forEach(function(issue) {console.warn('!!! - ' + issue)});
issues.forEach(function(issue) {console.warn('!!! - ' + issue);});
console.warn(Array(110).join('!'));
console.warn('');
if (process.env.CI) {
process.exit(1);
}
}