This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-06-11
Channels
- # announcements (1)
- # asami (10)
- # aws (36)
- # babashka (1)
- # beginners (32)
- # biff (13)
- # calva (2)
- # cider (2)
- # clj-kondo (3)
- # cljs-dev (5)
- # clojure-poland (2)
- # clojured (5)
- # clojurescript (7)
- # core-logic (13)
- # core-matrix (2)
- # core-typed (1)
- # datomic (1)
- # fulcro (19)
- # gratitude (6)
- # meander (15)
- # minecraft (4)
- # pathom (3)
- # podcasts-discuss (2)
- # reagent (19)
- # releases (1)
- # shadow-cljs (69)
- # sql (3)
- # tools-deps (22)
- # vim (1)
Workshop time at ClojureD! https://github.com/clj-kondo/hooks-workshop-clojured-2022 EDIT: done
🎓 1
Here are some possible solutions from the clj-kondo hooks workshop! https://github.com/clj-kondo/hooks-workshop-clojured-2022/tree/solutions cc @U3ZG4CAF8
Is there any chance I could make clj-kondo warn me that this:
(concat v1 (if cond ["new item"] []))
can be rewritten as
(concat v1 (when cond ["new item"]))
?
My instinct tells me no but then again I saw clj-kondo do some type inference magic the other day, so I wouldn't be surprised 🙂
edit: oops, bad timing