Improve automatic_links globally
This commit is contained in:
parent
f467b8d77c
commit
7f839b2ece
5 changed files with 163 additions and 37 deletions
|
|
@ -10,8 +10,40 @@
|
|||
/// [http://c.com][http://c.com]
|
||||
pub fn a() {}
|
||||
|
||||
/// 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
|
||||
//~^ ERROR won't be a link as is
|
||||
//~^ 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>
|
||||
|
|
@ -20,3 +52,9 @@ pub fn c() {}
|
|||
///
|
||||
/// [b]: http://b.com
|
||||
pub fn everything_is_fine_here() {}
|
||||
|
||||
#[allow(automatic_links)]
|
||||
pub mod foo {
|
||||
/// https://somewhere.com/a?hello=12&bye=11#xyz
|
||||
pub fn bar() {}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -16,11 +16,107 @@ error: unneeded long form for URL
|
|||
LL | /// [http://b.com]
|
||||
| ^^^^^^^^^^^^^^ help: use an automatic link instead: `<http://b.com>`
|
||||
|
||||
error: won't be a link as is
|
||||
error: this URL is not a hyperlink
|
||||
--> $DIR/automatic-links.rs:13:5
|
||||
|
|
||||
LL | /// https://somewhere.com
|
||||
| ^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://somewhere.com>`
|
||||
|
||||
error: this URL is not a hyperlink
|
||||
--> $DIR/automatic-links.rs:15:5
|
||||
|
|
||||
LL | /// https://somewhere.com/a
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://somewhere.com/a>`
|
||||
|
||||
error: this URL is not a hyperlink
|
||||
--> $DIR/automatic-links.rs:17:5
|
||||
|
|
||||
LL | /// https://www.somewhere.com
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://www.somewhere.com>`
|
||||
|
||||
error: this URL is not a hyperlink
|
||||
--> $DIR/automatic-links.rs:19:5
|
||||
|
|
||||
LL | /// https://www.somewhere.com/a
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://www.somewhere.com/a>`
|
||||
|
||||
error: this URL is not a hyperlink
|
||||
--> $DIR/automatic-links.rs:21:5
|
||||
|
|
||||
LL | /// https://subdomain.example.com
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://subdomain.example.com>`
|
||||
|
||||
error: this URL is not a hyperlink
|
||||
--> $DIR/automatic-links.rs:23:5
|
||||
|
|
||||
LL | /// https://somewhere.com?
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://somewhere.com?>`
|
||||
|
||||
error: this URL is not a hyperlink
|
||||
--> $DIR/automatic-links.rs:25:5
|
||||
|
|
||||
LL | /// https://somewhere.com/a?
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://somewhere.com/a?>`
|
||||
|
||||
error: this URL is not a hyperlink
|
||||
--> $DIR/automatic-links.rs:27:5
|
||||
|
|
||||
LL | /// https://somewhere.com?hello=12
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://somewhere.com?hello=12>`
|
||||
|
||||
error: aborting due to 3 previous errors
|
||||
error: this URL is not a hyperlink
|
||||
--> $DIR/automatic-links.rs:29:5
|
||||
|
|
||||
LL | /// https://somewhere.com/a?hello=12
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://somewhere.com/a?hello=12>`
|
||||
|
||||
error: this URL is not a hyperlink
|
||||
--> $DIR/automatic-links.rs:31:5
|
||||
|
|
||||
LL | /// https://example.com?hello=12#xyz
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://example.com?hello=12#xyz>`
|
||||
|
||||
error: this URL is not a hyperlink
|
||||
--> $DIR/automatic-links.rs:33:5
|
||||
|
|
||||
LL | /// https://example.com/a?hello=12#xyz
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://example.com/a?hello=12#xyz>`
|
||||
|
||||
error: this URL is not a hyperlink
|
||||
--> $DIR/automatic-links.rs:35:5
|
||||
|
|
||||
LL | /// https://example.com#xyz
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://example.com#xyz>`
|
||||
|
||||
error: this URL is not a hyperlink
|
||||
--> $DIR/automatic-links.rs:37:5
|
||||
|
|
||||
LL | /// https://example.com/a#xyz
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://example.com/a#xyz>`
|
||||
|
||||
error: this URL is not a hyperlink
|
||||
--> $DIR/automatic-links.rs:39:5
|
||||
|
|
||||
LL | /// https://somewhere.com?hello=12&bye=11
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://somewhere.com?hello=12&bye=11>`
|
||||
|
||||
error: this URL is not a hyperlink
|
||||
--> $DIR/automatic-links.rs:41:5
|
||||
|
|
||||
LL | /// https://somewhere.com/a?hello=12&bye=11
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://somewhere.com/a?hello=12&bye=11>`
|
||||
|
||||
error: this URL is not a hyperlink
|
||||
--> $DIR/automatic-links.rs:43:5
|
||||
|
|
||||
LL | /// https://somewhere.com?hello=12&bye=11#xyz
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://somewhere.com?hello=12&bye=11#xyz>`
|
||||
|
||||
error: this URL is not a hyperlink
|
||||
--> $DIR/automatic-links.rs:45:10
|
||||
|
|
||||
LL | /// hey! https://somewhere.com/a?hello=12&bye=11#xyz
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://somewhere.com/a?hello=12&bye=11#xyz>`
|
||||
|
||||
error: aborting due to 19 previous errors
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue