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 8c34458 commit c3e13e5Copy full SHA for c3e13e5
src/projectWatcher/Project.ts
@@ -96,7 +96,7 @@ export class Project {
96
if (this.lastResult) result.push(this.lastResult);
97
if (this.tslintRunner) {
98
const tslintResult = this.tslintRunner.getLastResult();
99
- if (tslintResult) result.push(this.tslintRunner.getLastResult());
+ if (tslintResult) result.push(tslintResult);
100
}
101
102
return result.join("\n");
src/tslint/TslintRunner.ts
@@ -31,7 +31,6 @@ export class TslintRunner {
31
autofix: this.autofix
32
});
33
34
- this.result = "";
35
this.startLintingWhenNotRunning();
36
37
0 commit comments