-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Consider using pretty-spec/pprint instead of clojure.pprint/pprint to pprint specs #14
Comments
Does pretty-spec support shortening namespaces so that |
Added that to version 0.1.3 user> (pspec/pprint (s/form 'clojure.core/let)
{:ns-aliases {"clojure.spec.alpha" "s"
"clojure.core.specs.alpha" "score"
"clojure.core" nil}})
; (s/fspec
; :args (s/cat :bindings :score/bindings :body (s/* any?))
; :ret any?
; :fn nil)
|
I've started using this in the latest master for function specs and it works pretty well, my own code still as to convert |
@stathissideris any news ? |
I've started testing pretty-spec in |
Maybe https://github.com/jpmonettas/pretty-spec can help pprinting specs more similar to what you would write by hand.
The text was updated successfully, but these errors were encountered: