clj-kondo 2025-12-17

maybe my search is lacking but I didn't find this issue being reported. I will post one if there isn't any -> fully qualified map using alias that has missing :require doesn't compile but this doesn't produce any lint error: test.clj

(ns test
  #_(:require
     [gl.shader :as shader]
     [model.assimp :as assimp]))

[::wirecube
 #::assimp{:model-to-load ["assets/cube.glb"] :tex-unit-offset 0}
 #::shader{:use ::barycentric-shader}]
lint result
clj-kondo.exe --lint .\test.clj 
linting took 240ms, errors: 0, warnings: 0
bb
bb .\test.clj
----- Error --------------------------------------------------------------------
Type:     clojure.lang.ExceptionInfo
Message:  Alias `assimp` not found in `:auto-resolve
`

issue welcome!

👍🏼 1