@audyarandela has joined the channel
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.
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!
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/
@alex.sheluchin has joined the channel
@ben.hili1994 has joined the channel
@landrei.barbu has joined the channel
@jonathan.adelson has joined the channel
@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]