about summary refs log tree commit diff
path: root/src/librustc_error_codes/error_codes
diff options
context:
space:
mode:
authorDylan DPC <dylan.dpc@gmail.com>2020-03-25 19:28:11 +0100
committerGitHub <noreply@github.com>2020-03-25 19:28:11 +0100
commit3586ab615e40fdc5a0f2bb40d201753b1e36d875 (patch)
tree3ea7bbeb3757b247ea3e9cda0165d94036a083fd /src/librustc_error_codes/error_codes
parent1154023118c81237fad4498d9ddbaf277fe41ab5 (diff)
parent5c65568f0b0b5f97fc02397c974d206bc3ff0f9d (diff)
downloadrust-3586ab615e40fdc5a0f2bb40d201753b1e36d875.tar.gz
rust-3586ab615e40fdc5a0f2bb40d201753b1e36d875.zip
Rollup merge of #70352 - bishtpawan:doc/61137-add-long-error-code-e0710, r=Dylan-DPC
Add long error explanation for E0710

Add long explanation for the E0710 error code
Part of #61137

r? @GuillaumeGomez
Diffstat (limited to 'src/librustc_error_codes/error_codes')
-rw-r--r--src/librustc_error_codes/error_codes/E0710.md34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/librustc_error_codes/error_codes/E0710.md b/src/librustc_error_codes/error_codes/E0710.md
new file mode 100644
index 00000000000..d9cefe2a6da
--- /dev/null
+++ b/src/librustc_error_codes/error_codes/E0710.md
@@ -0,0 +1,34 @@
+An unknown tool name found in scoped lint
+
+Erroneous code examples:
+
+```compile_fail,E0710
+#[allow(clipp::filter_map)] // error!`
+fn main() {
+    // business logic
+}
+```
+
+```compile_fail,E0710
+#[warn(clipp::filter_map)] // error!`
+fn main() {
+    // business logic
+}
+```
+
+Please verify you didn't misspell the tool's name or that you didn't
+forget to import it in you project:
+
+```
+#[allow(clippy::filter_map)] // ok!
+fn main() {
+    // business logic
+}
+```
+
+```
+#[warn(clippy::filter_map)] // ok!
+fn main() {
+    // business logic
+}
+```