mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 09:27:25 +00:00
12 lines
331 B
Rust
12 lines
331 B
Rust
#![warn(clippy::doc_markdown)]
|
|
|
|
/// This is a special interface for ClipPy which doesn't require backticks
|
|
fn allowed_name() {}
|
|
|
|
/// OAuth and LaTeX are inside Clippy's default list.
|
|
fn default_name() {}
|
|
|
|
/// TestItemThingyOfCoolness might sound cool but is not on the list and should be linted.
|
|
fn unknown_name() {}
|
|
|
|
fn main() {}
|