This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-03-04
Channels
- # aleph (8)
- # aws (14)
- # babashka (37)
- # beginners (30)
- # calva (5)
- # cider (4)
- # clj-kondo (21)
- # cljsrn (4)
- # clojure (234)
- # clojure-denmark (1)
- # clojure-europe (10)
- # clojure-france (10)
- # clojure-italy (4)
- # clojure-nl (17)
- # clojure-sanfrancisco (1)
- # clojure-spec (8)
- # clojure-uk (44)
- # clojurescript (20)
- # cursive (9)
- # datascript (2)
- # datomic (5)
- # emacs (9)
- # fulcro (50)
- # graalvm (32)
- # jackdaw (18)
- # leiningen (1)
- # malli (10)
- # meander (10)
- # nrepl (10)
- # off-topic (15)
- # pathom (20)
- # re-frame (14)
- # reagent (37)
- # reitit (7)
- # ring (1)
- # shadow-cljs (102)
- # test-check (6)
- # tree-sitter (15)
- # vim (4)
- # xtdb (2)
- # yada (1)
I'm using expectations.clojure.test
and I'm getting a lint error - perhaps because of the macro usage. Can I tell clj-kondo to ignore?
@dharrigan Can you please post code along with the screenshot, so I can see what it looks like and test it?
Thanks @borkdude. I had my clj-kondo configuration in the wrong location (home directory, not in the local project folder)
@suomi.esko informed me that it's possible to use https://github.com/gregsh/Clojure-Kit/ to set up clj-kondo integration in IntelliJ IDEA
I haven't tried it, but if someone wants to and wants to document it, here's the issue: https://github.com/borkdude/clj-kondo/issues/786
Hi, I have some imports in my ns declaration that are unused, but they have side effects (logback). It looks like that linter can't be configured. Should I raise a GitHub issue?
By the way clj-kondo is great, I am impressed by how much more it covers than Joker which I was using before
@oliy if you are requiring those namespace only for side-effects, you should not give them an alias or use refer and then the linter doesn't warn about them
The information I have at the moment is that if we don't import them then logback doesn't work