joker v0.12.7 is out: https://github.com/candid82/joker/releases/tag/v0.12.7
arch package updated.
May be I misunderstand something?
cat .joker
{:known-macros [mount/defstate]}
cat m.clj
(ns m (:require [mount.core :as mount]))
(mount/defstate a)
joker --lint m.clj
m.clj:2:17: Parse error: Unable to resolve symbol: a
How to disable that warning?
@maxp Maybe you need to fully qualify the macro in .joker?
Thank you for the great idea!