From 7ca74c04677257b0ca2bec826f270364dc24768a Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Tue, 13 Dec 2022 12:58:57 +0100 Subject: [PATCH] :paperclip: Fix unexpected linter issue --- common/dev/user.clj | 2 +- common/src/app/common/geom/shapes/transforms.cljc | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/common/dev/user.clj b/common/dev/user.clj index fc379cc34..3f56de5f4 100644 --- a/common/dev/user.clj +++ b/common/dev/user.clj @@ -38,7 +38,7 @@ ;; --- Development Stuff (defn- run-tests - ([] (run-tests #"^common-tests.test-.*$")) + ([] (run-tests #"^common-tests.*-test$")) ([o] (repl/refresh) (cond diff --git a/common/src/app/common/geom/shapes/transforms.cljc b/common/src/app/common/geom/shapes/transforms.cljc index 6028c6a09..582c59167 100644 --- a/common/src/app/common/geom/shapes/transforms.cljc +++ b/common/src/app/common/geom/shapes/transforms.cljc @@ -22,7 +22,8 @@ [app.common.types.modifiers :as ctm] [app.common.uuid :as uuid])) -#?(:clj (set! *warn-on-reflection* true)) +#?(:clj (set! *warn-on-reflection* true) + :cljs (ex/ignoring nil)) ;; --- Relative Movement