(λ. borkdude)

Upcoming in a #cljKondo near you: discouraged-java-method

#clojure

May 31, 2025, 10:00 · · · 0 · 0
(λ. borkdude)

The next feature for #cljKondo I'd like to tackle is incomplete protocol definitions, the most upvoted issue currently

#clojure

(λ. borkdude)

Nice LSP feature I just learned about from Eric Dallo:

lsp-signature-activate (in emacs lsp-mode), it shows the arg names and docstrings of a function you're currently calling inline

#clojure #lsp #cljKondo

Arjen :emacs: :linux: :nixos:

Hey #clojure / #clojurescript community, does anyone have a config for clj-kondo to support the re-frame macros? #cljKondo

(λ. borkdude)

New #cljKondo is out with a new redundant-nested-call linter which reports functions and macro calls that you could unnest:

#clojure

(λ. borkdude)

Cam Saul from Metabase at the conj likes #cljKondo :)

#clojure #clojureconj

Oct 25, 2024, 17:41 · · · 1 · 0
(λ. borkdude)

I've worked on and off on a feature in clj-kondo to detect that macro is used as a value (which is reported by the compiler as an error normally). I'm curious if users will find false positives. If you can please test it on your Clojure project like this:

```
$ clj -Sdeps '{:deps {clj-kondo/clj-kondo {:git/sha "96344bd32257afdebf19ee634999c397000c1aa0" :git/url "github.com/clj-kondo/clj-kondo
' -M -m clj-kondo.main --lint src
```

A simple example:

```
[let]
```

#clojure #cljKondo