I noticed that in cli.rs (huak-cli crate) there is no formal structure to some of these function signatures. For example some functions will lead with the configuration data:
It'd be nice to structure this module a bit better. Either [a-z] for command parameters and end with Config or order the rest of the parameters by what feels natural for that command. Either way I think Config data should be last.
I noticed that in cli.rs (
huak-cli
crate) there is no formal structure to some of these function signatures. For example some functions will lead with the configuration data:Others might have
Config
between other parameters:And others have
Config
follow the rest of the parameters:It'd be nice to structure this module a bit better. Either [a-z] for command parameters and end with
Config
or order the rest of the parameters by what feels natural for that command. Either way I thinkConfig
data should be last.