chore(lint): enable object and reassignment rules

This commit is contained in:
Peter Steinberger
2026-05-31 09:32:33 +01:00
parent ea11b8ad3d
commit f5eca3f84c
197 changed files with 619 additions and 638 deletions
+2 -4
View File
@@ -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");
};