This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2024-01-22
Channels
- # announcements (18)
- # babashka (9)
- # beginners (22)
- # biff (2)
- # calva (17)
- # clj-kondo (5)
- # clojure (9)
- # clojure-europe (25)
- # clojure-nl (1)
- # clojure-norway (3)
- # clojure-uk (7)
- # clojuredesign-podcast (6)
- # clojurescript (61)
- # cursive (11)
- # data-science (1)
- # datahike (3)
- # datomic (2)
- # humbleui (2)
- # hyperfiddle (7)
- # jobs (1)
- # jobs-discuss (4)
- # joyride (1)
- # overtone (7)
- # re-frame (2)
- # reitit (9)
- # releases (2)
- # remote-jobs (8)
- # scittle (1)
- # shadow-cljs (48)
- # squint (8)
Is it possible to have a directory-level config that is applied on top of the repo-level config? For example:
.clj-kondo/config.edn
src/foo/.clj-kondo/config.edn
src/bar
where the config nested in src/foo
only applies to namespaces in foo.*
and not bar.*
We make liberal use of that right now, which is great. very helpful
it is possible to create an :ns-group
with a regex and then use that name in :config-in-ns
ooooo yes, that'll work i think