You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tell me if you were ready to accept PR into the code base allowing formatting namespaces in the ways described in the article by Stuart Sierra how-to-ns?
I mean this part. Un-nest namespace feature
;; Good
(:require
[com.example.client]
[com.example.routes]
[com.example.server])
;; Bad
(:require
(com.example client server routes))
And also this horizontal space saving feature
;; Good
(:require
[com.example.client]
[com.example.routes]
[com.example.server])
;; Bad
(:require [com.example.client]
[com.example.routes]
[com.example.server])
There are separate utilities like gfredericks/how-to-ns for performing this functionality, but it seems it would be appropriate to transfer this to your tool. If you are not interested for code like this in cljfmt codebase, then let me know and I won’t waste time preparing it. I'm not interested in doing this as a separate tool.
The text was updated successfully, but these errors were encountered:
Tell me if you were ready to accept PR into the code base allowing formatting namespaces in the ways described in the article by Stuart Sierra how-to-ns?
I mean this part. Un-nest namespace feature
And also this horizontal space saving feature
There are separate utilities like gfredericks/how-to-ns for performing this functionality, but it seems it would be appropriate to transfer this to your tool. If you are not interested for code like this in cljfmt codebase, then let me know and I won’t waste time preparing it. I'm not interested in doing this as a separate tool.
The text was updated successfully, but these errors were encountered: