mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
17 lines
690 B
Text
17 lines
690 B
Text
error: this looks like a failed attempt at checking for the file extension
|
|
--> tests/ui/path_ends_with_ext.rs:11:5
|
|
|
|
|
LL | path.ends_with(".md");
|
|
| ^^^^^^^^^^^^^^^^^^^^^ help: try: `path.extension().is_some_and(|ext| ext == "md")`
|
|
|
|
|
= note: `-D clippy::path-ends-with-ext` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::path_ends_with_ext)]`
|
|
|
|
error: this looks like a failed attempt at checking for the file extension
|
|
--> tests/ui/path_ends_with_ext.rs:32:5
|
|
|
|
|
LL | path.ends_with(".md")
|
|
| ^^^^^^^^^^^^^^^^^^^^^ help: try: `path.extension().map_or(false, |ext| ext == "md")`
|
|
|
|
error: aborting due to 2 previous errors
|
|
|