This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-10-16
Channels
- # announcements (7)
- # babashka (1)
- # beginners (25)
- # calva (7)
- # cider (15)
- # clj-kondo (13)
- # cljdoc (14)
- # clojure (151)
- # clojure-europe (4)
- # clojure-hamburg (2)
- # clojure-italy (22)
- # clojure-nl (57)
- # clojure-spec (12)
- # clojure-uk (6)
- # clojuredesign-podcast (5)
- # clojurescript (12)
- # core-async (8)
- # cursive (26)
- # datascript (9)
- # datomic (92)
- # emacs (4)
- # fulcro (7)
- # graalvm (1)
- # graphql (2)
- # instaparse (3)
- # jobs (1)
- # jvm (2)
- # kaocha (6)
- # nrepl (3)
- # off-topic (5)
- # re-frame (45)
- # reagent (5)
- # reitit (18)
- # ring (1)
- # shadow-cljs (89)
- # slack-help (9)
- # spacemacs (2)
- # sql (54)
- # tools-deps (75)
- # vim (28)
- # xtdb (17)
- # yada (31)
I might have an idea for automatic diffs for performance test output. I guess you could save the output in circleci cache with a key that includes commit hash. Then get master results from cache (or compile and run if it's missing) and report differences using whatever circleci has available.
We have no more warnings in clj-kondo
in the CircleCI monolith 🎉
@marc-omorain congrats.
we have a lot of :info
left 😂
@marc-omorain Hannu and I were discussing this feature: https://github.com/borkdude/clj-kondo/pull/537#issuecomment-542607125 It would be cool if we could use CircleCI to generate this diff (branch vs master) and show it in a PR
:private-call {:level :info}
:unused-binding {:level :info}
:not-empty? {:level :info}
The private-call
s are complicated. We use
for stubbing, and stubbing private vars produces the private call warning.
We are hoping to filter that warning to be :error
in src/
and ignored in test/