This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-03-14
Channels
- # announcements (10)
- # architecture (4)
- # atom-editor (1)
- # babashka (53)
- # babashka-sci-dev (118)
- # beginners (91)
- # biff (12)
- # calva (19)
- # clara (13)
- # clerk (20)
- # clj-commons (25)
- # clj-kondo (6)
- # cljdoc (19)
- # cljs-dev (3)
- # clojars (2)
- # clojure (71)
- # clojure-art (2)
- # clojure-europe (68)
- # clojure-nl (1)
- # clojure-norway (6)
- # clojure-uk (3)
- # clojured (19)
- # clojurescript (34)
- # clr (19)
- # cursive (11)
- # emacs (14)
- # fulcro (3)
- # helix (2)
- # holy-lambda (2)
- # honeysql (27)
- # hyperfiddle (39)
- # malli (2)
- # off-topic (83)
- # polylith (4)
- # rdf (22)
- # re-frame (20)
- # reitit (4)
- # rewrite-clj (14)
- # shadow-cljs (17)
- # slack-help (2)
- # tools-deps (45)
- # xtdb (3)
I've put :config-in-comment {:linters {:unresolved-namespace {:level :off} :unused-binding {:level :off}}}
into my clj-kondo config and that worked for disabling the unresolved namespace linter but not for the unused binding linter. is that how it is or did I do something dumb?
This works for me:
(ns dude
{:clj-kondo/config '{:config-in-comment {:linters {:unresolved-namespace {:level :off}
:unused-binding {:level :off}}}}})
(comment
(clojure.string/includes? "")
(let [x 1]
)
)
Turns out I was using an outdated version, after updating clj-kondo it now works. Sorry for the bother