@i let's continue here with your question. can you give an example?
(ns acme.mobile.log
(:require [clojure.string :as string]
[taoensso.timbre :as timbre])
(:require-macros [acme.mobile.log :refer [debug info]]))
;; debug and info are meant to be used by the *external* libraries that import log.
;; clj-kondo complains debug and info are unused.
you can configure this. See https://github.com/clj-kondo/clj-kondo/blob/master/doc/linters.md#unused-referred-var
Can I do that inline in the acme.mobile.log file.
like #xxx supprese warning
you can also do that inline using #_:clj-kondo/ignore
great