This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2024-01-29
Channels
- # announcements (1)
- # beginners (176)
- # biff (3)
- # calva (7)
- # clojure (68)
- # clojure-europe (18)
- # clojure-nl (1)
- # clojure-norway (12)
- # clojure-uk (6)
- # community-development (4)
- # conjure (1)
- # core-async (5)
- # datomic (21)
- # events (1)
- # fulcro (5)
- # funcool (3)
- # hyperfiddle (35)
- # leiningen (18)
- # malli (3)
- # nbb (20)
- # overtone (20)
- # pedestal (1)
- # polylith (68)
- # portal (6)
- # releases (1)
- # shadow-cljs (6)
- # slack-help (7)
- # squint (6)
- # vim (4)
- # xtdb (4)
I've noticed that using https://github.com/metosin/malli/blob/master/src/malli/dev.clj#L39 calls emit!
which will cause https://github.com/metosin/malli#clj-kondo to be updated for functions in my code that I have attached a schema to. That results in quite a bit of churn in .clj-kondo/metosin/malli-types-clj/config.edn
. The clj-kondo folks recommend https://github.com/clj-kondo/clj-kondo/blob/master/doc/config.md#importing the config, but it can be pretty distracting when it changes frequently (i.e. whenever a new function is added/changed).
Is there an easy way to prevent that churn? Or do most people just put malli-types-clj
in their .gitignore?
I ignore it.