Skip to content

Commit f116cbc

Browse files
committed
chore: fix eslint warnings
1 parent 93cd428 commit f116cbc

4 files changed

Lines changed: 4 additions & 1 deletion

File tree

packages/cli/src/cli.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ program
110110
.command("schema")
111111
.description("prints the json schema for the configuration file")
112112
.action(() => {
113+
// eslint-disable-next-line no-console
113114
console.log(JSON.stringify(ConfigSchema, null, 2));
114115
});
115116

packages/cli/src/executor.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ export class Executor {
4343
return require(file);
4444
}
4545
} catch (error) {
46+
// eslint-disable-next-line no-console
4647
console.error("Error running WoT script:", error);
4748
process.exit(1);
4849
}

packages/cli/src/script-runner.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export async function runScripts(context: WoTContext, scripts: string[], debug?:
4646
}
4747
});
4848
};
49-
// eslint-disable-next-line @typescript-eslint/no-var-requires
49+
5050
if (debug && debug.shouldBreak) {
5151
// Activate inspector only if is not already opened and wait for the debugger to attach
5252
inspector.url() == null && inspector.open(debug.port, debug.host, true);

packages/cli/test/parsers/config-params-parser.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* eslint-disable @typescript-eslint/no-explicit-any */
12
/********************************************************************************
23
* Copyright (c) 2025 Contributors to the Eclipse Foundation
34
*

0 commit comments

Comments
 (0)