Ignore doc_markdown pedantic clippy lint

warning: item in documentation is missing backticks
       --> src/opts.rs:131:66
        |
    131 |     /// Local path to module or other named item to expand, e.g. os::unix::ffi
        |                                                                  ^^^^^^^^^^^^^
        |
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown
        = note: `-W clippy::doc-markdown` implied by `-W clippy::pedantic`
        = help: to override `-W clippy::pedantic` add `#[allow(clippy::doc_markdown)]`
    help: try
        |
    131 |     /// Local path to module or other named item to expand, e.g. `os::unix::ffi`
        |                                                                  ~~~~~~~~~~~~~~~
This commit is contained in:
David Tolnay 2024-02-27 22:30:46 -08:00
parent 4934b35c02
commit bec65bf4f2
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -1,4 +1,5 @@
#![allow(
clippy::doc_markdown,
clippy::items_after_statements,
clippy::manual_assert,
clippy::manual_strip,