-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add doc_link_with_quotes lint #8385
Merged
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd like to see a test case against false positives, e.g.