This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-02-18
Channels
- # announcements (5)
- # aws (4)
- # babashka (30)
- # beginners (90)
- # calva (31)
- # clj-on-windows (16)
- # clojure (110)
- # clojure-dev (10)
- # clojure-europe (26)
- # clojure-nl (1)
- # clojure-norway (20)
- # clojure-spec (25)
- # clojure-uk (15)
- # clojured (2)
- # clojurescript (12)
- # code-reviews (2)
- # community-development (3)
- # conjure (14)
- # datomic (15)
- # defnpodcast (2)
- # events (1)
- # fulcro (17)
- # graalvm (8)
- # gratitude (1)
- # introduce-yourself (2)
- # jobs-discuss (7)
- # kaocha (6)
- # lsp (9)
- # luminus (5)
- # nextjournal (7)
- # observability (9)
- # off-topic (71)
- # portal (5)
- # practicalli (1)
- # rdf (21)
- # re-frame (15)
- # releases (1)
- # shadow-cljs (24)
- # testing (7)
- # tools-build (13)
- # tools-deps (14)
- # xtdb (7)
Amazing news everyone, clojure-lsp was selected one more time for ClojuristTogether funding 🎉
Thank you for everyone who supported and contributed to the project somehow!
Really excited to bring more improvements to the project 🚀
https://twitter.com/cljtogether/status/1494583543560904704?t=TydInjGctMdJRMs9GJFINg&s=19



@ericdallo Congrats. Looking forward to work more on making the clj-kondo+lsp combo more awesome ;)
My first feature request for that funding 😉 #(something %1) <-> (fn [x1] (something x1)) refactor 🙂 I’ve got to do this way to often
@domagala.lukas And if you enable :redundant-fn-wrapper
in your clj-kondo, it will tell you that (fn [x1] (something x1))
is a redundant fn wrapper :)
just wanted an easy example, it does have more stuff in there usually 🙂 I probably should extract it more often, but I still have stuff like #(string? (second %))
scattered around the codebase and those need to become (fn [x] {:exits (string? (second x))})
sometimes.