Skip to content

Commit 8e18beb

Browse files
committed
fix eslint errors after merge
1 parent 45f8dc9 commit 8e18beb

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/compiler/checker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15066,7 +15066,7 @@ namespace ts {
1506615066
}
1506715067
diagnostic = !noImplicitAny ? Diagnostics._0_implicitly_has_an_1_return_type_but_a_better_type_may_be_inferred_from_usage :
1506815068
wideningKind === WideningKind.GeneratorYield ? Diagnostics._0_which_lacks_return_type_annotation_implicitly_has_an_1_yield_type :
15069-
Diagnostics._0_which_lacks_return_type_annotation_implicitly_has_an_1_return_type;
15069+
Diagnostics._0_which_lacks_return_type_annotation_implicitly_has_an_1_return_type;
1507015070
break;
1507115071
case SyntaxKind.MappedType:
1507215072
if (noImplicitAny) {

src/testRunner/parallel/host.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -291,8 +291,8 @@ namespace Harness.Parallel.Host {
291291
worker.accumulatedOutput += d.toString();
292292
console.log(`[Worker ${i}]`, d.toString());
293293
};
294-
worker.process.stderr!.on("data", appendOutput);
295-
worker.process.stdout!.on("data", appendOutput);
294+
worker.process.stderr.on("data", appendOutput);
295+
worker.process.stdout.on("data", appendOutput);
296296
const killChild = (timeout: TaskTimeout) => {
297297
worker.process.kill();
298298
console.error(`Worker exceeded ${timeout.duration}ms timeout ${worker.currentTasks && worker.currentTasks.length ? `while running test '${worker.currentTasks[0].file}'.` : `during test setup.`}`);

src/testRunner/unittests/jsDocParsing.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ namespace ts {
317317
* @see {@link second link text} and {@link Foo|a foo} as well.
318318
*/`);
319319
parsesCorrectly("authorTag",
320-
`/**
320+
`/**
321321
* @author John Doe <john.doe@example.com>
322322
* @author John Doe <john.doe@example.com> unexpected comment
323323
*/`);

0 commit comments

Comments
 (0)