Skip to content

Commit

Permalink
Reformat to make both cljfmt and parinfer happy
Browse files Browse the repository at this point in the history
  • Loading branch information
dundalek committed Mar 14, 2020
1 parent e350bfb commit 02e2969
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@
; {:git/url "https://github.com/borkdude/edamame"
; :tag "v0.0.9"
; :sha "815aae8612bace7691726da71ffa9a0b89cb4d49"}}}
:lint {:extra-deps {cljfmt {:mvn/version "0.6.4"}}
:lint {:extra-deps {cljfmt {:mvn/version "0.6.7"}}
:main-opts ["-m" "cljfmt.main" "--file-pattern" "(?<!clojure_main_sci)\\.clj[csx]?$" "check"]}
:lint/fix {:extra-deps {cljfmt {:mvn/version "0.6.4"}}
:lint/fix {:extra-deps {cljfmt {:mvn/version "0.6.7"}}
:main-opts ["-m" "cljfmt.main" "--file-pattern" "(?<!clojure_main_sci)\\.clj[csx]?$" "fix"]}
:kaocha {:extra-paths ["test"]
:extra-deps {lambdaisland/kaocha {:mvn/version "0.0-409"}}}}}
3 changes: 1 addition & 2 deletions src/common/closh/zero/core.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,7 @@
([cmd] (shx cmd []))
([cmd args] (shx cmd args {}))
([cmd args opts]
#?(:cljs (doto
(process/shx cmd args opts)
#?(:cljs (doto (process/shx cmd args opts)
(.on "error"
(fn [err]
(case (.-errno err)
Expand Down

0 comments on commit 02e2969

Please sign in to comment.