From 9f2d87d7d705ebb592dbd2be03469aa7c17cfe0c Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Fri, 25 Feb 2022 11:54:16 +0100 Subject: [PATCH] :paperclip: Fix linter issues related to clj-kondo update --- common/src/app/common/data.cljc | 2 +- common/src/app/common/math.cljc | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/common/src/app/common/data.cljc b/common/src/app/common/data.cljc index 52a158de9..2fd7e27c3 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])))