Skip to content

Commit 95434f1

Browse files
committed
Include missing semicolon.
1 parent d8ab24e commit 95434f1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

stack/rush-stack-compiler-shared/src/shared/EslintRunner.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export class EslintRunner extends RushStackCompilerBase<ILintRunnerConfig> {
8585
args: args,
8686
// ESLint errors are logged to stdout
8787
onError: (data: Buffer) => {
88-
this._terminal.writeErrorLine(`Unexpected STDERR output from ESLint: ${data.toString()}`)
88+
this._terminal.writeErrorLine(`Unexpected STDERR output from ESLint: ${data.toString()}`);
8989
},
9090
onData: (data: Buffer) => {
9191
stdoutBuffer.push(data.toString());

0 commit comments

Comments
 (0)