Iβm getting tempted to implement macro-expansion in clj-kondo π
I thought I'd try using clj-kondo with emacs. So I think I followed the instructions... but I'm not getting rightly harassed by the checker...
I presume it should be giving me feedback about the select-keys statement.
Humm..... (flycheck-buffer) says "Flycheck mode diabled"
you have disabled flycheck clj-kondo is working together with flychek
evaling this turned it on ... (global-flycheck-mode)
You should not turn it on globally though. You should hook it with the Clojure mode you are using.
Unless you wanted to turn on flycheck mode for every major mode.
Hello, I'm trying to exclude a couple of macro symbols from being linted. This is my config in .clj-kondo/config.edn
in the root of my project (same level as deps.edn).
{:linters
{:unresolved-symbols
{:exclude [(io.pedestal.interceptor.error/error-dispatch [ctx ex])]}}}
Then in my code I require this namespace/function like
[io.pedestal.interceptor.error :refer [error-dispatch]]
But ctx
and ex
are still getting flagged as unresolvedI am pretty sure I'm doing something wrong, but not seeing what
Without a minimal but complete repro I also can't see what π
Ah, spotted it
the linter is called *-symbol single, not plural
singular
Ah thanks!
Hello everyone! Is it just that I canβt download the latest release? Or does everyone have a problem? https://github.com/borkdude/clj-kondo/releases/download/v2020.05.02/clj-kondo-2020.05.02-linux-amd64.zip
it seems to be a general Github problem. babashka builds are failing to because of this
Oh π I thought so. Also encountered a problem on the CI
seems to be fixed now
I can download from github again
Me too. Thanks, @nate