Mitchell Berendhuysen
Mitchell Berendhuysen
For future reference, you can annotate your function or method with the following attribute so clippy passes ci: ```rust #[allow(clippy::print_stdout)] fn your_function() {} ```
I think regex is also a good option to solve this issue. I'm starting to lean towards adding the [regex](https://crates.io/crates/regex) crate more and more since #50 and #116 probably would...
There is no end of pattern marker in `wildmatch` I think so `13.*.*-alpha` (like in [mirrord](https://github.com/metalbear-co/mirrord/releases)) would also be matched with `13.*.*`
I'm not working on it. > I'm thinking about 3 or 4, but I would love to hear your thoughts! It's probably a good idea to make this number a...
We could also add a prompt for the user along side one of these options if no flag is provided? That way there is no default that can mess up...
I was thinking of refactoring the way errors are printed to stdout/err if that is not included in #97, we can include this in the same refactor and I think...
> Come to think of it, it would be nice to enforce the usage of pretty-assertions everywhere in the codebase so it would be impossible to use plain assert_eq! thinking...
Unless Im doing something wrong I can't seem to get clippy to run on tests. Note that the top of the test section in `src/config/toml.rs` contains the following lint option:...
I did, its the last output in the previous comment.
Would the implementation of this serialization be implemented in the binary itself or only in the test? Another question I have is do we add fuzzing for this test? This...