mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-28 13:26:04 -06:00
chore(lint): enable stricter error rules
This commit is contained in:
@@ -119,7 +119,9 @@ export function registerSecurityCli(program: Command) {
|
||||
token,
|
||||
password,
|
||||
});
|
||||
const fixResult = opts.fix ? await fixSecurityFootguns().catch((_err) => null) : null;
|
||||
const fixResult = opts.fix
|
||||
? await fixSecurityFootguns().catch((_err: unknown) => null)
|
||||
: null;
|
||||
|
||||
const sourceConfig = getRuntimeConfig();
|
||||
const { resolvedConfig: cfg, diagnostics: secretDiagnostics } =
|
||||
|
||||
Reference in New Issue
Block a user