cider

A channel dedicated to the Clojure Interactive Development Environment that Rocks (aka CIDER). :cider:
ag 2021-05-18T19:48:52.001600Z

What's the best way of "normalizing" ns declarations? i.e., I have something like this:

(:require [foo
           [core]
           [utils]])

;;; I want to convert that into:
(:require [foo.core]
          [foo.utils])