From 1bad233e2f79104a0d1f3e50c11b2c8e26701465 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Mon, 28 Feb 2022 12:09:59 +0100 Subject: [PATCH] :paperclip: Fix linter issues on staging branch --- backend/src/app/http/awsns.clj | 2 +- common/src/app/common/data.cljc | 2 +- common/src/app/common/math.cljc | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/backend/src/app/http/awsns.clj b/backend/src/app/http/awsns.clj index fdf217db7..d4c9eaca4 100644 --- a/backend/src/app/http/awsns.clj +++ b/backend/src/app/http/awsns.clj @@ -26,7 +26,7 @@ (defmethod ig/init-key ::handler [_ cfg] - (fn [request respond raise] + (fn [request respond _] (try (let [body (parse-json (slurp (:body request))) mtype (get body "Type")] diff --git a/common/src/app/common/data.cljc b/common/src/app/common/data.cljc index 9dfba00ad..69e30c6a5 100644 --- a/common/src/app/common/data.cljc +++ b/common/src/app/common/data.cljc @@ -6,7 +6,7 @@ (ns app.common.data "Data manipulation and query helper functions." - (:refer-clojure :exclude [read-string hash-map merge name parse-double group-by]) + (:refer-clojure :exclude [read-string hash-map merge name parse-double group-by iteration]) #?(:cljs (:require-macros [app.common.data])) (:require diff --git a/common/src/app/common/math.cljc b/common/src/app/common/math.cljc index 67a327da8..6b61b3d73 100644 --- a/common/src/app/common/math.cljc +++ b/common/src/app/common/math.cljc @@ -6,6 +6,7 @@ (ns app.common.math "A collection of math utils." + (:refer-clojure :exclude [abs]) #?(:cljs (:require [goog.math :as math])))