Welcome! Please see the About page for a little more info on how this works.
It would be useful for ci, etc, to be able to run with this set from deps.edn or directly on the command line.
Similar to:
https://ask.clojure.org/index.php/3787/theres-enable-warn-reflection-from-command-running-clojure
If nothing else, you can add -e (set! *unchecked-math* :warn-on-boxed) to your command line clj invocation, it will execute this before running your repl (via -r) or main ns (via -m).
-e (set! *unchecked-math* :warn-on-boxed)
-r
-m
$ clj -e '(set! *unchecked-math* :warn-on-boxed)' -r :warn-on-boxed (ins)user=> *unchecked-math* :warn-on-boxed