We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4d5fe1 commit 0ca23a4Copy full SHA for 0ca23a4
src/dev/tslint/run_tslint_cli.ts
@@ -70,10 +70,12 @@ export function runTslintCli() {
70
);
71
72
list.run().catch((error: any) => {
73
+ process.exitCode = 1;
74
+
75
if (!error.errors) {
76
log.error('Unhandled execption!');
77
log.error(error);
- process.exit(1);
78
+ process.exit();
79
}
80
81
for (const e of error.errors) {
0 commit comments