Fix @typescript-eslint/no-unsafe-call errors
This commit is contained in:
parent
9b0a57db13
commit
c347ce8483
15 changed files with 40 additions and 20 deletions
|
|
@ -231,7 +231,9 @@ const main = (argv: string[]) => {
|
|||
const child = spawn(process.execPath, args_, options);
|
||||
|
||||
if (flags.verbose) {
|
||||
// eslint-disable-next-line @typescript-eslint/no-unsafe-call
|
||||
child.stdout?.on('data', (data) => console.log(data.toString('utf8')));
|
||||
// eslint-disable-next-line @typescript-eslint/no-unsafe-call
|
||||
child.stderr?.on('data', (data) => console.error(data.toString('utf8')));
|
||||
}
|
||||
if (flags.verbose) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue