When rustdoc lints were changed to be tool lints, the `rustdoc` group was removed, leading to spurious warnings like ``` warning: unknown lint: `rustdoc` ``` The lint group still worked when rustdoc ran, since rustdoc added the group itself. This renames the group to `rustdoc::all` for consistency with `clippy::all` and the rest of the rustdoc lints.
29 lines
634 B
Rust
29 lines
634 B
Rust
//! Documenting the kinds of lints emitted by rustdoc.
|
|
//!
|
|
//! ```
|
|
//! println!("sup");
|
|
//! ```
|
|
|
|
#![deny(rustdoc::all)]
|
|
|
|
/// what up, let's make an [error]
|
|
///
|
|
/// ```
|
|
/// println!("sup");
|
|
/// ```
|
|
pub fn link_error() {} //~^^^^^ ERROR unresolved link to `error`
|
|
|
|
/// wait, this doesn't have a doctest?
|
|
pub fn no_doctest() {} //~^ ERROR missing code example in this documentation
|
|
|
|
/// wait, this *does* have a doctest?
|
|
///
|
|
/// ```
|
|
/// println!("sup");
|
|
/// ```
|
|
fn private_doctest() {} //~^^^^^ ERROR documentation test in private item
|
|
|
|
/// <unknown>
|
|
//~^ ERROR unclosed HTML tag `unknown`
|
|
//~^^ ERROR missing code example
|
|
pub fn c() {}
|