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
The current clj-kondo config shipped with the project maps failjure.core/try* to clojure.core/try. This causes clj-kondo to complain about the the expression Missing catch or finally in try.
current workaround is to set .clj-kondo/config.edn to be:
The current clj-kondo config shipped with the project maps
failjure.core/try*
toclojure.core/try
. This causes clj-kondo to complain about the the expressionMissing catch or finally in try
.current workaround is to set
.clj-kondo/config.edn
to be:{:lint-as {failjure.core/try* clj-kondo.lint-as/def-catch-all}}
The text was updated successfully, but these errors were encountered: