This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2021-07-17
Channels
- # announcements (2)
- # babashka (1)
- # beginners (54)
- # calva (19)
- # clj-kondo (7)
- # cljs-dev (6)
- # cljsrn (18)
- # clojure (11)
- # clojure-europe (19)
- # clojurescript (7)
- # conjure (3)
- # cursive (7)
- # datomic (4)
- # figwheel-main (2)
- # fulcro (4)
- # helix (5)
- # honeysql (24)
- # instaparse (2)
- # lsp (20)
- # malli (17)
- # off-topic (6)
- # pathom (2)
- # practicalli (2)
- # shadow-cljs (2)
- # tools-deps (34)
- # vim (7)
@ikitommi , hi! I've tried to run static type checking using FileWatchers + clj-kondo. Can't see any effect for plus1
. clj-kondo works well. malli version 0.6.0-snapshot
did you add the clj-kondo configs for malli? Not sure if that could be automatic in the future? Maybe @U04V15CAJ knows? https://github.com/metosin/malli#clj-kondo
Sounds right. But is there a default directory I could write the config file to, without breaking anything?
it's best to write into a directory with a fully qualified name like com.metosin.malli
or so
good idea. but despite being fully qualified, users need to enable that config in their projects, right? no option to "trust 'em all"?
any tool can dump any config into the dir, but it's not always something a user wants to opt into
@ikitommi you was right! I added {:config-paths ["configs/malli"]}
to .clj-kondo/config.edn and now clj-kondo works well with malli static type checking