diff options
author | Aleksey Kladov <[email protected]> | 2020-10-02 09:13:58 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-10-02 09:13:58 +0100 |
commit | 0599e64bb296201b0aa5c637be34e28149d00e5d (patch) | |
tree | 67000947cbe688188779b0c66098228929c82369 /docs | |
parent | 505ff4070a3de962dbde66f08b6550cda2eb4eab (diff) |
Document Clippy strategy
Diffstat (limited to 'docs')
-rw-r--r-- | docs/dev/style.md | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/dev/style.md b/docs/dev/style.md index f0fdb5adc..fb407afcd 100644 --- a/docs/dev/style.md +++ b/docs/dev/style.md | |||
@@ -371,3 +371,13 @@ After you are happy with the state of the code, please use [interactive rebase]( | |||
371 | 371 | ||
372 | Avoid @mentioning people in commit messages and pull request descriptions(they are added to commit message by bors). | 372 | Avoid @mentioning people in commit messages and pull request descriptions(they are added to commit message by bors). |
373 | Such messages create a lot of duplicate notification traffic during rebases. | 373 | Such messages create a lot of duplicate notification traffic during rebases. |
374 | |||
375 | # Clippy | ||
376 | |||
377 | We don't enforce Clippy. | ||
378 | A number of default lints have high false positive rate. | ||
379 | Selectively patching false-positives with `allow(clippy)` is considered worse than not using Clippy at all. | ||
380 | There's `cargo xtask lint` command which runs a subset of low-FPR lints. | ||
381 | Careful tweaking of `xtask lint` is welcome. | ||
382 | See also [rust-lang/clippy#5537](https://github.com/rust-lang/rust-clippy/issues/5537). | ||
383 | Of course, applying Clippy suggestions is welcome as long as they indeed improve the code. | ||