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
When using nrepl-client from a babashka task, the current approach requires that for the :expr, you either pass a string literal like "(+ 1 1)" or an expression producing a string, like (str '(+ 1 1)). The latter option has the benefit of letting your editor provide syntax highlighting and code navigation, but it's still a little awkward and quoted forms don't get linted as well.
Please consider improving the ergonomics around this use case for future iterations 🙏
The text was updated successfully, but these errors were encountered:
When using nrepl-client from a babashka task, the current approach requires that for the
:expr
, you either pass a string literal like"(+ 1 1)"
or an expression producing a string, like(str '(+ 1 1))
. The latter option has the benefit of letting your editor provide syntax highlighting and code navigation, but it's still a little awkward and quoted forms don't get linted as well.Please consider improving the ergonomics around this use case for future iterations 🙏
The text was updated successfully, but these errors were encountered: