announcements 2019-10-26

clj-kondo v2019.10.26: - Windows support via LSP and NPM - Major improvement in parser feedback when typing unbalanced parens and more! https://github.com/borkdude/clj-kondo/releases/tag/v2019.10.26 Follow up in #clj-kondo.

4
6
❤️ 3

typing unbalanced parens? 😉 #paredit4life

@otfrom some people don't know paredit yet (beginners) and some other people (of course not me... cparen) sometimes copy paste code which is unbalanced.

I know. This is really cool and will be helpful for a lot of people. Thx for the new version!

Thank @marc-omorain for the parsing improvements 🙂

🙏 2

Practicalli Clojure YouTube channel - 50 videos to help you discover the fun in functional programming with Clojure https://www.youtube.com/playlist?list=PLpr9V-R8ZxiDjyU7cQYWOEFBDR1t7t0wv https://practicalli.github.io/

❤️ 9
🎓 1
🙏 7

This is awesome.

👍 1

@alex.sheluchin has joined the channel

@ben.hili1994 has joined the channel

@landrei.barbu has joined the channel

@jonathan.adelson has joined the channel

Justin Heyes-Jones 2019-10-26T16:24:05.187Z

@justinhj has joined the channel

@sathia2704 has joined the channel

@dskecse has joined the channel

Babashka, a native scripting tool for Clojure, v0.0.22: support for reader conditionals: https://github.com/borkdude/babashka#reader-conditionals

Implementation detail: to make this work, I also had to add support for reader conditionals to sci and edamame:

(edamame/parse-string "[1 2 #?@(:cljs [3 4])]" {:features #{:cljs} :read-cond :allow})
;;=> [1 2 3 4]

👍 1