summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/src/docs/allow_attributes_without_reason.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/clippy/src/docs/allow_attributes_without_reason.txt')
-rw-r--r--src/tools/clippy/src/docs/allow_attributes_without_reason.txt22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/tools/clippy/src/docs/allow_attributes_without_reason.txt b/src/tools/clippy/src/docs/allow_attributes_without_reason.txt
deleted file mode 100644
index fcc4f49b0..000000000
--- a/src/tools/clippy/src/docs/allow_attributes_without_reason.txt
+++ /dev/null
@@ -1,22 +0,0 @@
-### What it does
-Checks for attributes that allow lints without a reason.
-
-(This requires the `lint_reasons` feature)
-
-### Why is this bad?
-Allowing a lint should always have a reason. This reason should be documented to
-ensure that others understand the reasoning
-
-### Example
-```
-#![feature(lint_reasons)]
-
-#![allow(clippy::some_lint)]
-```
-
-Use instead:
-```
-#![feature(lint_reasons)]
-
-#![allow(clippy::some_lint, reason = "False positive rust-lang/rust-clippy#1002020")]
-``` \ No newline at end of file