rustlings/exercises/22_clippy
mo8it 38016cb2d6
Some checks are pending
Rustlings Tests / clippy (push) Waiting to run
Rustlings Tests / fmt (push) Waiting to run
Rustlings Tests / test (macOS-latest) (push) Waiting to run
Rustlings Tests / test (ubuntu-latest) (push) Waiting to run
Rustlings Tests / test (windows-latest) (push) Waiting to run
Rustlings Tests / dev-check (push) Waiting to run
Web / Build and deploy site and docs (push) Waiting to run
clippy3: Make the intent more clear
2024-11-13 16:06:41 +01:00
..
clippy1.rs Fix clippy1 2024-07-04 19:46:43 +02:00
clippy2.rs clippy2 solution 2024-07-01 11:55:18 +02:00
clippy3.rs clippy3: Make the intent more clear 2024-11-13 16:06:41 +01:00
README.md Update Exercises Directory Names to Reflect Order 2023-10-16 07:37:12 -04:00

Clippy

The Clippy tool is a collection of lints to analyze your code so you can catch common mistakes and improve your Rust code.

If you used the installation script for Rustlings, Clippy should be already installed. If not you can install it manually via rustup component add clippy.

Further information