From 67d08f4229065fc97c71aa70d80fd9eebfb9d55e Mon Sep 17 00:00:00 2001 From: Benjamin Fischer Date: Mon, 26 Apr 2021 01:17:54 +0200 Subject: [PATCH] chore: lint --- codeview.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/codeview.ts b/codeview.ts index 5df63ce..9f5d880 100644 --- a/codeview.ts +++ b/codeview.ts @@ -411,14 +411,14 @@ const codeview = new Command() processes.forEach((process) => { try { process.close(); - } catch (error) { + } catch (_) { // ignore error } try { if (process instanceof Deno.Process) { process.kill(Deno.Signal.SIGKILL); } - } catch (error) { + } catch (_) { // ignore error } });