NoahTheDuke / splint

A Clojure linter focused on style and code shape.
https://cljdoc.org/d/io.github.noahtheduke/splint/
Mozilla Public License 2.0
115 stars 2 forks source link

Default CLI options can not be overridden via .splint.edn file #5

Closed dpassen closed 1 year ago

dpassen commented 1 year ago

The load-config function merges in the options last. Those are the CLI options in practice. The issue is output and parallel both have default options, which mean they are always populated in the options map.

As a result, neither output nor parallel can be set via the .splint.edn file.

NoahTheDuke commented 1 year ago

Thanks for the report!