clj-kondo

borkdude 2024-09-21T09:43:20.181039Z

The next clj-kondo will also warn on calls of enum constants which you're not supposed to do:

$ clj-kondo --lint - <<< '(def b (java.time.temporal.ChronoField/DAY_OF_MONTH))'
<stdin>:1:8: error: Static fields should be referenced without parens unless they are intended as function calls
This case wasn't covered previously but now is on master

2
🎉 9