Fork me on GitHub
#clj-kondo
<
2021-11-27
>
chrisn16:11:25

Is there a recommended way to both develop exported configs and have per-library configs for internal symbols? My attempt so far - that didnt' work, is to add config-paths to the .clj-kondo/config.edn file as such:

{:config-paths ["resources/clj-kondo.exports/cnuernber/dtype-next/"]}
When I use --config-path as a command line arg using the above path it works, but if I don't provide any command line args it doesn't work - I expected the command line pathway to respect the config-paths in config.edn.

borkdude16:11:30

@chris441 that's almost the right config, just add ../ in front of that

borkdude16:11:44

and remove the trailing /

borkdude16:11:12

the config-paths are always relative to the config.edn

chrisn16:11:23

perfect - it worked great. Thanks!