rust/tests/rustdoc-ui/bare-urls.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

61 lines
1.7 KiB
Rust
Raw Normal View History

// run-rustfix
2021-03-27 22:35:02 -05:00
#![deny(rustdoc::bare_urls)]
2020-10-12 11:29:56 -05:00
2020-10-14 08:11:55 -05:00
/// https://somewhere.com
//~^ ERROR this URL is not a hyperlink
/// https://somewhere.com/a
//~^ ERROR this URL is not a hyperlink
/// https://www.somewhere.com
//~^ ERROR this URL is not a hyperlink
/// https://www.somewhere.com/a
//~^ ERROR this URL is not a hyperlink
/// https://subdomain.example.com
//~^ ERROR not a hyperlink
/// https://somewhere.com?
//~^ ERROR this URL is not a hyperlink
/// https://somewhere.com/a?
//~^ ERROR this URL is not a hyperlink
/// https://somewhere.com?hello=12
2020-10-14 08:11:55 -05:00
//~^ ERROR this URL is not a hyperlink
/// https://somewhere.com/a?hello=12
//~^ ERROR this URL is not a hyperlink
/// https://example.com?hello=12#xyz
//~^ ERROR this URL is not a hyperlink
/// https://example.com/a?hello=12#xyz
//~^ ERROR this URL is not a hyperlink
/// https://example.com#xyz
//~^ ERROR this URL is not a hyperlink
/// https://example.com/a#xyz
//~^ ERROR this URL is not a hyperlink
/// https://somewhere.com?hello=12&bye=11
//~^ ERROR this URL is not a hyperlink
/// https://somewhere.com/a?hello=12&bye=11
//~^ ERROR this URL is not a hyperlink
/// https://somewhere.com?hello=12&bye=11#xyz
//~^ ERROR this URL is not a hyperlink
/// hey! https://somewhere.com/a?hello=12&bye=11#xyz
//~^ ERROR this URL is not a hyperlink
pub fn c() {}
/// <https://somewhere.com>
2020-10-12 11:29:56 -05:00
/// [a](http://a.com)
/// [b]
///
/// [b]: http://b.com
2020-10-17 16:58:46 -05:00
///
/// ```
/// This link should not be linted: http://example.com
///
/// Nor this one: <http://example.com> or this one: [x](http://example.com)
2020-10-17 16:58:46 -05:00
/// ```
2020-10-31 07:46:28 -05:00
///
/// [should_not.lint](should_not.lint)
2020-10-12 11:29:56 -05:00
pub fn everything_is_fine_here() {}
2020-10-14 08:11:55 -05:00
2021-03-27 22:35:02 -05:00
#[allow(rustdoc::bare_urls)]
2020-10-14 08:11:55 -05:00
pub mod foo {
/// https://somewhere.com/a?hello=12&bye=11#xyz
pub fn bar() {}
}