diff options
| author | Mario Reder <mreder1289@gmail.com> | 2020-02-14 15:25:03 +0100 |
|---|---|---|
| committer | Mario Reder <mreder1289@gmail.com> | 2020-02-26 14:07:07 +0100 |
| commit | 1e2fd9c92f8cd6e389525ca1a999fca4c90b5921 (patch) | |
| tree | aace341dbef4b15e37ddf260d6be857a11cca104 /exercises/clippy/README.md | |
| parent | 7e8530b21ff355c9b52e07eb3ba25278746a6932 (diff) | |
feat: Add clippy lints
- adds a new 'clippy' category for exercises
- clippy exercises should throw no warnings
- install script now also installs clippy
is related to https://github.com/rust-lang/rust-clippy/issues/2604
Diffstat (limited to 'exercises/clippy/README.md')
| -rw-r--r-- | exercises/clippy/README.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/exercises/clippy/README.md b/exercises/clippy/README.md new file mode 100644 index 0000000..60a12fe --- /dev/null +++ b/exercises/clippy/README.md @@ -0,0 +1,8 @@ +### 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`. + +For more information about Clippy lints, please see [their documentation page](https://rust-lang.github.io/rust-clippy/master/). |
