Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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 ~ "; |
- Loading branch information