This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-02-18
Channels
- # announcements (43)
- # aws (28)
- # babashka (32)
- # beginners (80)
- # calva (13)
- # chlorine-clover (2)
- # cider (11)
- # clj-kondo (15)
- # cljs-dev (1)
- # clojure (151)
- # clojure-dev (11)
- # clojure-europe (11)
- # clojure-italy (3)
- # clojure-losangeles (3)
- # clojure-nl (4)
- # clojure-spec (20)
- # clojure-uk (58)
- # clojured (3)
- # clojuredesign-podcast (2)
- # clojurescript (37)
- # core-async (4)
- # core-typed (1)
- # cursive (53)
- # datascript (5)
- # datomic (26)
- # duct (23)
- # emacs (3)
- # fulcro (22)
- # graalvm (1)
- # jobs (2)
- # joker (11)
- # juxt (24)
- # lumo (1)
- # mid-cities-meetup (2)
- # nyc (1)
- # off-topic (54)
- # parinfer (1)
- # reagent (13)
- # shadow-cljs (16)
- # sql (9)
- # tree-sitter (9)
- # vim (9)
Is there anything special I need to do for flycheck-clj-kondo
to pick up a config? The plugin works fine for me in clean project.
@finn.volkel The config is picked up using the current working directory. Emacs sets the current working directory for flycheck relative to the file you're editing
so if you're editing /foo/bar/baz.clj
and your config is in /foo/bar/.clj-kondo/config.edn
then it should work
I'm not aware of any changes you should have to do to flycheck-clj-kondo. I'm using that myself every day
Is there some way to set global/default config? Something similar to .clojure/deps.edn
.
I'm also curious about sparkofreason's question. And another quick question -- does .clj-kondo/config.edn
replace the default config, or is it merged at the top level, or is it deep-merged?
Also thanks for clj-kondo, it brings me joy!
it is deep-merged. global/system/user configs are not supported. more info here: https://github.com/borkdude/clj-kondo/issues/736 solution: make a script (use babashka for it!)
Nice. Been looking for an excuse to use babashka. Thanks.