Commit f4eac7e
committed
Ignore needless_raw_string_hashes clippy lint
warning: unnecessary hashes around raw string literal
--> build.rs:10:21
|
10 | const PROBE: &str = r#"
| _____________________^
11 | | #![feature(error_generic_member_access)]
12 | |
13 | | use std::error::{Error, Request};
... |
35 | | }
36 | | "#;
| |__^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes
= note: `-W clippy::needless-raw-string-hashes` implied by `-W clippy::all`
= help: to override `-W clippy::all` add `#[allow(clippy::needless_raw_string_hashes)]`
help: remove all the hashes around the literal
|
10 ~ const PROBE: &str = r"
11 | #![feature(error_generic_member_access)]
...
35 | }
36 ~ ";
|1 parent 54465b7 commit f4eac7e
1 file changed
+2
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
1 | 3 | | |
2 | 4 | | |
3 | 5 | | |
| |||
0 commit comments