mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-12 21:53:00 -06:00
chore(lint): enable object and reassignment rules
This commit is contained in:
@@ -910,8 +910,6 @@ const resolveRunNodeDiagnosticArgs = (deps) => {
|
||||
|
||||
const waitForSpawnedProcess = async (childProcess, deps) => {
|
||||
let forwardedSignal = null;
|
||||
let onSigInt;
|
||||
let onSigTerm;
|
||||
|
||||
const cleanupSignals = () => {
|
||||
if (onSigInt) {
|
||||
@@ -934,10 +932,10 @@ const waitForSpawnedProcess = async (childProcess, deps) => {
|
||||
}
|
||||
};
|
||||
|
||||
onSigInt = () => {
|
||||
const onSigInt = () => {
|
||||
forwardSignal("SIGINT");
|
||||
};
|
||||
onSigTerm = () => {
|
||||
const onSigTerm = () => {
|
||||
forwardSignal("SIGTERM");
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user