From 0ad0a65fa952364d424424616ea233bf050d5283 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Fri, 24 Jun 2022 07:29:14 +0200 Subject: [PATCH 1/3] :paperclip: Minor changes on circleci config --- .circleci/config.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 93ef6837e..dbba251c1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -11,6 +11,7 @@ jobs: - image: cimg/redis:6.2.6 working_directory: ~/repo + resource_class: large environment: # Customize the JVM maximum heap limit From 5151a7bd49f7e7ce0e91d350f824d281671eb198 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Fri, 24 Jun 2022 07:34:34 +0200 Subject: [PATCH 2/3] :paperclip: Ignore linter issues on single function on frontend Because it happens to the `new` function previuously defined clash with the instance creation (probably linter bug). --- frontend/src/app/util/object.cljs | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/app/util/object.cljs b/frontend/src/app/util/object.cljs index 0abdd9c90..b5de31cb9 100644 --- a/frontend/src/app/util/object.cljs +++ b/frontend/src/app/util/object.cljs @@ -43,6 +43,7 @@ (rest keys) (unchecked-get res key)))))) +#_:clj-kondo/ignore (defn without [obj keys] (let [keys (cond From 826bd29327f418b202486db753348163614ad89b Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Fri, 24 Jun 2022 07:41:06 +0200 Subject: [PATCH 3/3] :paperclip: Disable :non-arg-vec-return-type-hint linter on clj-kondo --- .clj-kondo/config.edn | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.clj-kondo/config.edn b/.clj-kondo/config.edn index c82ed8b10..5aec7c30f 100644 --- a/.clj-kondo/config.edn +++ b/.clj-kondo/config.edn @@ -38,6 +38,9 @@ :single-key-in {:level :warning} + :non-arg-vec-return-type-hint + {:level :off} + :redundant-do {:level :off}