-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7bb69c0
commit cb29e3e
Showing
7 changed files
with
87 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
use clippy_utils::diagnostics::span_lint; | ||
use itertools::Itertools; | ||
use rustc_ast::{AttrKind, Attribute}; | ||
use rustc_lint::{EarlyContext, EarlyLintPass}; | ||
use rustc_session::{declare_lint_pass, declare_tool_lint}; | ||
|
||
declare_clippy_lint! { | ||
/// ### What it does | ||
/// Detects the syntax `['foo']` in documentation comments (notice quotes instead of backticks) | ||
/// outside of code blocks | ||
/// ### Why is this bad? | ||
/// It is likely a typo when defining an intra-doc link | ||
/// | ||
/// ### Example | ||
/// ```rust | ||
/// /// See also: ['foo'] | ||
/// fn bar() {} | ||
/// ``` | ||
/// Use instead: | ||
/// ```rust | ||
/// /// See also: [`foo`] | ||
/// fn bar() {} | ||
/// ``` | ||
#[clippy::version = "1.60.0"] | ||
pub DOC_LINK_WITH_QUOTES, | ||
pedantic, | ||
"possible typo for an intra-doc link" | ||
} | ||
declare_lint_pass!(DocLinkWithQuotes => [DOC_LINK_WITH_QUOTES]); | ||
|
||
impl EarlyLintPass for DocLinkWithQuotes { | ||
fn check_attribute(&mut self, ctx: &EarlyContext<'_>, attr: &Attribute) { | ||
if let AttrKind::DocComment(_, symbol) = attr.kind { | ||
if contains_quote_link(symbol.as_str()) { | ||
span_lint( | ||
ctx, | ||
DOC_LINK_WITH_QUOTES, | ||
attr.span, | ||
"possible intra-doc link using quotes instead of backticks", | ||
); | ||
} | ||
} | ||
} | ||
} | ||
|
||
fn contains_quote_link(s: &str) -> bool { | ||
let mut in_backticks = false; | ||
let mut found_opening = false; | ||
|
||
for c in s.chars().tuple_windows::<(char, char)>() { | ||
match c { | ||
('`', _) => in_backticks = !in_backticks, | ||
('[', '\'') if !in_backticks => found_opening = true, | ||
('\'', ']') if !in_backticks && found_opening => return true, | ||
_ => {}, | ||
} | ||
} | ||
|
||
false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#![warn(clippy::doc_link_with_quotes)] | ||
|
||
fn main() { | ||
foo() | ||
} | ||
|
||
/// Calls ['bar'] | ||
pub fn foo() { | ||
bar() | ||
} | ||
|
||
pub fn bar() {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
error: possible intra-doc link using quotes instead of backticks | ||
--> $DIR/doc_link_with_quotes.rs:7:1 | ||
| | ||
LL | /// Calls ['bar'] | ||
| ^^^^^^^^^^^^^^^^^ | ||
| | ||
= note: `-D clippy::doc-link-with-quotes` implied by `-D warnings` | ||
|
||
error: aborting due to previous error | ||
|