Skip to content

Commit c723f95

Browse files
authored
Merge pull request #178 from jrr/suppress-lint-error
suppress lint error
2 parents 9061305 + bf31161 commit c723f95

File tree

2 files changed

+1287
-1144
lines changed

2 files changed

+1287
-1144
lines changed

lib/incremental-typescript-compiler.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,8 @@ module.exports = class IncrementalTypescriptCompiler {
113113
let text = data
114114
.toString()
115115
.trim()
116-
.replace(/\u001bc/g, '');
116+
// tsc screen-clearing:
117+
.replace(/\u001bc/g, ''); // eslint-disable-line no-control-regex
117118

118119
if (text) {
119120
this.project.ui.writeLine(text);

0 commit comments

Comments
 (0)