in src/progress-reporter.ts [53:63]
public complete() {
if (!this.spinner) {
return;
}
if (this.check && this.reformatted) {
this.spinner.fail(`${this.reformatted} files were not formatted`);
} else {
this.spinner.succeed(this.getMessage());
}
}