summary refs log tree commit diff
path: root/src/tools/rust-analyzer/docs/dev/style.md
diff options
context:
space:
mode:
authorarcnmx <git@git.arcn.mx>2023-01-09 10:36:22 -0800
committerarcnmx <git@git.arcn.mx>2023-01-09 10:36:22 -0800
commit06e705f13dade399d629dd422e3fc84bddc58db0 (patch)
treee9185db88e3d7932df39a218ed5b1bc12a1ce51d /src/tools/rust-analyzer/docs/dev/style.md
parentaf58fc869910eae0ec525d49cbb6d953ea10a8c6 (diff)
parent368e0bb32f1178cf162c2ce5f7e10b7ae211eb26 (diff)
downloadrust-06e705f13dade399d629dd422e3fc84bddc58db0.tar.gz
rust-06e705f13dade399d629dd422e3fc84bddc58db0.zip
:arrow_up: rust-analyzer
Merge commit '368e0bb32f1178cf162c2ce5f7e10b7ae211eb26'
Diffstat (limited to 'src/tools/rust-analyzer/docs/dev/style.md')
-rw-r--r--src/tools/rust-analyzer/docs/dev/style.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/rust-analyzer/docs/dev/style.md b/src/tools/rust-analyzer/docs/dev/style.md
index a80eebd6329..d2a03fba40d 100644
--- a/src/tools/rust-analyzer/docs/dev/style.md
+++ b/src/tools/rust-analyzer/docs/dev/style.md
@@ -101,7 +101,7 @@ Including a description and GIF suitable for the changelog means less work for t
 
 We don't enforce Clippy.
 A number of default lints have high false positive rate.
-Selectively patching false-positives with `allow(clippy)` is considered worse than not using Clippy at all.
+Selectively patching false-positives with `allow(clippy)` is probably worse than entirely disabling a problematic lint.
 There's a `cargo lint` command which runs a subset of low-FPR lints.
 Careful tweaking of `lint` is welcome.
 Of course, applying Clippy suggestions is welcome as long as they indeed improve the code.