oakmac / standard-clojure-style-js

Standard Clojure Style in JavaScript
ISC License
84 stars 1 forks source link

bug with commas and comments #162

Closed oakmac closed 5 hours ago

oakmac commented 1 week ago

This is currently formatted incorrectly:

(def my-map
  {:aaa "aaa",
   :bbb "bbb", ;; foo
   :ccc "ccc"})

So is this:

(def my-vec
  [a "a"
   b "b"
   ;; foo
   ,])
oakmac commented 5 hours ago

Fixed with PR-164