Hi, is there some published rewrite-clj code somewhere that removes reader conditionals, eg, if you want to turn your cljc files into clj ?
Yes, I've got some code for this in clj-kondo, it's in impl/utils.clj
clj-kondo basically passes over a .cljc file for each language and removes any reader conditional branches that it's not interested in for that particular language
Very cool, I’ll check it out, thanks borkdude