stormyzio / timeshot

Cross-platform tool to create quick code backups and restore them in case of risky changes.
MIT License
0 stars 1 forks source link

Run Cargo Clippy #2

Closed hardliner66 closed 2 days ago

hardliner66 commented 2 days ago

I just wanted to let you know, there is command called cargo clippy, which is intended to lint rust code and help write better code. You can invoke it with cargo clippy --all and what I like to do before making a new release is running cargo clippy --all -- -D clippy::pedantic to see even more lints.

stormyzio commented 2 days ago

Hello! Thank you for your comment. I saw a little bit about clippy before but I didn't know exactly what it was and I didn't know it was as simple as that. Thank you!