]> git.lizzy.rs Git - rust.git/blob - clippy_lints/src/doc.rs
Auto merge of #104321 - Swatinem:async-gen, r=oli-obk
[rust.git] / clippy_lints / src / doc.rs
1 use clippy_utils::attrs::is_doc_hidden;
2 use clippy_utils::diagnostics::{span_lint, span_lint_and_help, span_lint_and_note, span_lint_and_then};
3 use clippy_utils::macros::{is_panic, root_macro_call_first_node};
4 use clippy_utils::source::{first_line_of_span, snippet_with_applicability};
5 use clippy_utils::ty::{implements_trait, is_type_diagnostic_item};
6 use clippy_utils::{is_entrypoint_fn, method_chain_args, return_ty};
7 use if_chain::if_chain;
8 use itertools::Itertools;
9 use rustc_ast::ast::{Async, AttrKind, Attribute, Fn, FnRetTy, ItemKind};
10 use rustc_ast::token::CommentKind;
11 use rustc_data_structures::fx::FxHashSet;
12 use rustc_data_structures::sync::Lrc;
13 use rustc_errors::emitter::EmitterWriter;
14 use rustc_errors::{Applicability, Handler, SuggestionStyle};
15 use rustc_hir as hir;
16 use rustc_hir::intravisit::{self, Visitor};
17 use rustc_hir::{AnonConst, Expr};
18 use rustc_lint::{LateContext, LateLintPass};
19 use rustc_middle::hir::nested_filter;
20 use rustc_middle::lint::in_external_macro;
21 use rustc_middle::ty;
22 use rustc_parse::maybe_new_parser_from_source_str;
23 use rustc_parse::parser::ForceCollect;
24 use rustc_session::parse::ParseSess;
25 use rustc_session::{declare_tool_lint, impl_lint_pass};
26 use rustc_span::def_id::LocalDefId;
27 use rustc_span::edition::Edition;
28 use rustc_span::source_map::{BytePos, FilePathMapping, SourceMap, Span};
29 use rustc_span::{sym, FileName, Pos};
30 use std::io;
31 use std::ops::Range;
32 use std::thread;
33 use url::Url;
34
35 declare_clippy_lint! {
36     /// ### What it does
37     /// Checks for the presence of `_`, `::` or camel-case words
38     /// outside ticks in documentation.
39     ///
40     /// ### Why is this bad?
41     /// *Rustdoc* supports markdown formatting, `_`, `::` and
42     /// camel-case probably indicates some code which should be included between
43     /// ticks. `_` can also be used for emphasis in markdown, this lint tries to
44     /// consider that.
45     ///
46     /// ### Known problems
47     /// Lots of bad docs won’t be fixed, what the lint checks
48     /// for is limited, and there are still false positives. HTML elements and their
49     /// content are not linted.
50     ///
51     /// In addition, when writing documentation comments, including `[]` brackets
52     /// inside a link text would trip the parser. Therefore, documenting link with
53     /// `[`SmallVec<[T; INLINE_CAPACITY]>`]` and then [`SmallVec<[T; INLINE_CAPACITY]>`]: SmallVec
54     /// would fail.
55     ///
56     /// ### Examples
57     /// ```rust
58     /// /// Do something with the foo_bar parameter. See also
59     /// /// that::other::module::foo.
60     /// // ^ `foo_bar` and `that::other::module::foo` should be ticked.
61     /// fn doit(foo_bar: usize) {}
62     /// ```
63     ///
64     /// ```rust
65     /// // Link text with `[]` brackets should be written as following:
66     /// /// Consume the array and return the inner
67     /// /// [`SmallVec<[T; INLINE_CAPACITY]>`][SmallVec].
68     /// /// [SmallVec]: SmallVec
69     /// fn main() {}
70     /// ```
71     #[clippy::version = "pre 1.29.0"]
72     pub DOC_MARKDOWN,
73     pedantic,
74     "presence of `_`, `::` or camel-case outside backticks in documentation"
75 }
76
77 declare_clippy_lint! {
78     /// ### What it does
79     /// Checks for the doc comments of publicly visible
80     /// unsafe functions and warns if there is no `# Safety` section.
81     ///
82     /// ### Why is this bad?
83     /// Unsafe functions should document their safety
84     /// preconditions, so that users can be sure they are using them safely.
85     ///
86     /// ### Examples
87     /// ```rust
88     ///# type Universe = ();
89     /// /// This function should really be documented
90     /// pub unsafe fn start_apocalypse(u: &mut Universe) {
91     ///     unimplemented!();
92     /// }
93     /// ```
94     ///
95     /// At least write a line about safety:
96     ///
97     /// ```rust
98     ///# type Universe = ();
99     /// /// # Safety
100     /// ///
101     /// /// This function should not be called before the horsemen are ready.
102     /// pub unsafe fn start_apocalypse(u: &mut Universe) {
103     ///     unimplemented!();
104     /// }
105     /// ```
106     #[clippy::version = "1.39.0"]
107     pub MISSING_SAFETY_DOC,
108     style,
109     "`pub unsafe fn` without `# Safety` docs"
110 }
111
112 declare_clippy_lint! {
113     /// ### What it does
114     /// Checks the doc comments of publicly visible functions that
115     /// return a `Result` type and warns if there is no `# Errors` section.
116     ///
117     /// ### Why is this bad?
118     /// Documenting the type of errors that can be returned from a
119     /// function can help callers write code to handle the errors appropriately.
120     ///
121     /// ### Examples
122     /// Since the following function returns a `Result` it has an `# Errors` section in
123     /// its doc comment:
124     ///
125     /// ```rust
126     ///# use std::io;
127     /// /// # Errors
128     /// ///
129     /// /// Will return `Err` if `filename` does not exist or the user does not have
130     /// /// permission to read it.
131     /// pub fn read(filename: String) -> io::Result<String> {
132     ///     unimplemented!();
133     /// }
134     /// ```
135     #[clippy::version = "1.41.0"]
136     pub MISSING_ERRORS_DOC,
137     pedantic,
138     "`pub fn` returns `Result` without `# Errors` in doc comment"
139 }
140
141 declare_clippy_lint! {
142     /// ### What it does
143     /// Checks the doc comments of publicly visible functions that
144     /// may panic and warns if there is no `# Panics` section.
145     ///
146     /// ### Why is this bad?
147     /// Documenting the scenarios in which panicking occurs
148     /// can help callers who do not want to panic to avoid those situations.
149     ///
150     /// ### Examples
151     /// Since the following function may panic it has a `# Panics` section in
152     /// its doc comment:
153     ///
154     /// ```rust
155     /// /// # Panics
156     /// ///
157     /// /// Will panic if y is 0
158     /// pub fn divide_by(x: i32, y: i32) -> i32 {
159     ///     if y == 0 {
160     ///         panic!("Cannot divide by 0")
161     ///     } else {
162     ///         x / y
163     ///     }
164     /// }
165     /// ```
166     #[clippy::version = "1.51.0"]
167     pub MISSING_PANICS_DOC,
168     pedantic,
169     "`pub fn` may panic without `# Panics` in doc comment"
170 }
171
172 declare_clippy_lint! {
173     /// ### What it does
174     /// Checks for `fn main() { .. }` in doctests
175     ///
176     /// ### Why is this bad?
177     /// The test can be shorter (and likely more readable)
178     /// if the `fn main()` is left implicit.
179     ///
180     /// ### Examples
181     /// ```rust
182     /// /// An example of a doctest with a `main()` function
183     /// ///
184     /// /// # Examples
185     /// ///
186     /// /// ```
187     /// /// fn main() {
188     /// ///     // this needs not be in an `fn`
189     /// /// }
190     /// /// ```
191     /// fn needless_main() {
192     ///     unimplemented!();
193     /// }
194     /// ```
195     #[clippy::version = "1.40.0"]
196     pub NEEDLESS_DOCTEST_MAIN,
197     style,
198     "presence of `fn main() {` in code examples"
199 }
200
201 declare_clippy_lint! {
202     /// ### What it does
203     /// Detects the syntax `['foo']` in documentation comments (notice quotes instead of backticks)
204     /// outside of code blocks
205     /// ### Why is this bad?
206     /// It is likely a typo when defining an intra-doc link
207     ///
208     /// ### Example
209     /// ```rust
210     /// /// See also: ['foo']
211     /// fn bar() {}
212     /// ```
213     /// Use instead:
214     /// ```rust
215     /// /// See also: [`foo`]
216     /// fn bar() {}
217     /// ```
218     #[clippy::version = "1.63.0"]
219     pub DOC_LINK_WITH_QUOTES,
220     pedantic,
221     "possible typo for an intra-doc link"
222 }
223
224 declare_clippy_lint! {
225     /// ### What it does
226     /// Checks for the doc comments of publicly visible
227     /// safe functions and traits and warns if there is a `# Safety` section.
228     ///
229     /// ### Why is this bad?
230     /// Safe functions and traits are safe to implement and therefore do not
231     /// need to describe safety preconditions that users are required to uphold.
232     ///
233     /// ### Examples
234     /// ```rust
235     ///# type Universe = ();
236     /// /// # Safety
237     /// ///
238     /// /// This function should not be called before the horsemen are ready.
239     /// pub fn start_apocalypse_but_safely(u: &mut Universe) {
240     ///     unimplemented!();
241     /// }
242     /// ```
243     ///
244     /// The function is safe, so there shouldn't be any preconditions
245     /// that have to be explained for safety reasons.
246     ///
247     /// ```rust
248     ///# type Universe = ();
249     /// /// This function should really be documented
250     /// pub fn start_apocalypse(u: &mut Universe) {
251     ///     unimplemented!();
252     /// }
253     /// ```
254     #[clippy::version = "1.66.0"]
255     pub UNNECESSARY_SAFETY_DOC,
256     style,
257     "`pub fn` or `pub trait` with `# Safety` docs"
258 }
259
260 #[expect(clippy::module_name_repetitions)]
261 #[derive(Clone)]
262 pub struct DocMarkdown {
263     valid_idents: FxHashSet<String>,
264     in_trait_impl: bool,
265 }
266
267 impl DocMarkdown {
268     pub fn new(valid_idents: FxHashSet<String>) -> Self {
269         Self {
270             valid_idents,
271             in_trait_impl: false,
272         }
273     }
274 }
275
276 impl_lint_pass!(DocMarkdown => [
277     DOC_LINK_WITH_QUOTES,
278     DOC_MARKDOWN,
279     MISSING_SAFETY_DOC,
280     MISSING_ERRORS_DOC,
281     MISSING_PANICS_DOC,
282     NEEDLESS_DOCTEST_MAIN,
283     UNNECESSARY_SAFETY_DOC,
284 ]);
285
286 impl<'tcx> LateLintPass<'tcx> for DocMarkdown {
287     fn check_crate(&mut self, cx: &LateContext<'tcx>) {
288         let attrs = cx.tcx.hir().attrs(hir::CRATE_HIR_ID);
289         check_attrs(cx, &self.valid_idents, attrs);
290     }
291
292     fn check_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx hir::Item<'_>) {
293         let attrs = cx.tcx.hir().attrs(item.hir_id());
294         let Some(headers) = check_attrs(cx, &self.valid_idents, attrs) else { return };
295         match item.kind {
296             hir::ItemKind::Fn(ref sig, _, body_id) => {
297                 if !(is_entrypoint_fn(cx, item.owner_id.to_def_id()) || in_external_macro(cx.tcx.sess, item.span)) {
298                     let body = cx.tcx.hir().body(body_id);
299                     let mut fpu = FindPanicUnwrap {
300                         cx,
301                         typeck_results: cx.tcx.typeck(item.owner_id.def_id),
302                         panic_span: None,
303                     };
304                     fpu.visit_expr(body.value);
305                     lint_for_missing_headers(cx, item.owner_id.def_id, sig, headers, Some(body_id), fpu.panic_span);
306                 }
307             },
308             hir::ItemKind::Impl(impl_) => {
309                 self.in_trait_impl = impl_.of_trait.is_some();
310             },
311             hir::ItemKind::Trait(_, unsafety, ..) => match (headers.safety, unsafety) {
312                 (false, hir::Unsafety::Unsafe) => span_lint(
313                     cx,
314                     MISSING_SAFETY_DOC,
315                     cx.tcx.def_span(item.owner_id),
316                     "docs for unsafe trait missing `# Safety` section",
317                 ),
318                 (true, hir::Unsafety::Normal) => span_lint(
319                     cx,
320                     UNNECESSARY_SAFETY_DOC,
321                     cx.tcx.def_span(item.owner_id),
322                     "docs for safe trait have unnecessary `# Safety` section",
323                 ),
324                 _ => (),
325             },
326             _ => (),
327         }
328     }
329
330     fn check_item_post(&mut self, _cx: &LateContext<'tcx>, item: &'tcx hir::Item<'_>) {
331         if let hir::ItemKind::Impl { .. } = item.kind {
332             self.in_trait_impl = false;
333         }
334     }
335
336     fn check_trait_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx hir::TraitItem<'_>) {
337         let attrs = cx.tcx.hir().attrs(item.hir_id());
338         let Some(headers) = check_attrs(cx, &self.valid_idents, attrs) else { return };
339         if let hir::TraitItemKind::Fn(ref sig, ..) = item.kind {
340             if !in_external_macro(cx.tcx.sess, item.span) {
341                 lint_for_missing_headers(cx, item.owner_id.def_id, sig, headers, None, None);
342             }
343         }
344     }
345
346     fn check_impl_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx hir::ImplItem<'_>) {
347         let attrs = cx.tcx.hir().attrs(item.hir_id());
348         let Some(headers) = check_attrs(cx, &self.valid_idents, attrs) else { return };
349         if self.in_trait_impl || in_external_macro(cx.tcx.sess, item.span) {
350             return;
351         }
352         if let hir::ImplItemKind::Fn(ref sig, body_id) = item.kind {
353             let body = cx.tcx.hir().body(body_id);
354             let mut fpu = FindPanicUnwrap {
355                 cx,
356                 typeck_results: cx.tcx.typeck(item.owner_id.def_id),
357                 panic_span: None,
358             };
359             fpu.visit_expr(body.value);
360             lint_for_missing_headers(cx, item.owner_id.def_id, sig, headers, Some(body_id), fpu.panic_span);
361         }
362     }
363 }
364
365 fn lint_for_missing_headers(
366     cx: &LateContext<'_>,
367     def_id: LocalDefId,
368     sig: &hir::FnSig<'_>,
369     headers: DocHeaders,
370     body_id: Option<hir::BodyId>,
371     panic_span: Option<Span>,
372 ) {
373     if !cx.effective_visibilities.is_exported(def_id) {
374         return; // Private functions do not require doc comments
375     }
376
377     // do not lint if any parent has `#[doc(hidden)]` attribute (#7347)
378     if cx
379         .tcx
380         .hir()
381         .parent_iter(cx.tcx.hir().local_def_id_to_hir_id(def_id))
382         .any(|(id, _node)| is_doc_hidden(cx.tcx.hir().attrs(id)))
383     {
384         return;
385     }
386
387     let span = cx.tcx.def_span(def_id);
388     match (headers.safety, sig.header.unsafety) {
389         (false, hir::Unsafety::Unsafe) => span_lint(
390             cx,
391             MISSING_SAFETY_DOC,
392             span,
393             "unsafe function's docs miss `# Safety` section",
394         ),
395         (true, hir::Unsafety::Normal) => span_lint(
396             cx,
397             UNNECESSARY_SAFETY_DOC,
398             span,
399             "safe function's docs have unnecessary `# Safety` section",
400         ),
401         _ => (),
402     }
403     if !headers.panics && panic_span.is_some() {
404         span_lint_and_note(
405             cx,
406             MISSING_PANICS_DOC,
407             span,
408             "docs for function which may panic missing `# Panics` section",
409             panic_span,
410             "first possible panic found here",
411         );
412     }
413     if !headers.errors {
414         let hir_id = cx.tcx.hir().local_def_id_to_hir_id(def_id);
415         if is_type_diagnostic_item(cx, return_ty(cx, hir_id), sym::Result) {
416             span_lint(
417                 cx,
418                 MISSING_ERRORS_DOC,
419                 span,
420                 "docs for function returning `Result` missing `# Errors` section",
421             );
422         } else {
423             if_chain! {
424                 if let Some(body_id) = body_id;
425                 if let Some(future) = cx.tcx.lang_items().future_trait();
426                 let typeck = cx.tcx.typeck_body(body_id);
427                 let body = cx.tcx.hir().body(body_id);
428                 let ret_ty = typeck.expr_ty(body.value);
429                 if implements_trait(cx, ret_ty, future, &[]);
430                 if let ty::Generator(_, subs, _) = ret_ty.kind();
431                 if is_type_diagnostic_item(cx, subs.as_generator().return_ty(), sym::Result);
432                 then {
433                     span_lint(
434                         cx,
435                         MISSING_ERRORS_DOC,
436                         span,
437                         "docs for function returning `Result` missing `# Errors` section",
438                     );
439                 }
440             }
441         }
442     }
443 }
444
445 /// Cleanup documentation decoration.
446 ///
447 /// We can't use `rustc_ast::attr::AttributeMethods::with_desugared_doc` or
448 /// `rustc_ast::parse::lexer::comments::strip_doc_comment_decoration` because we
449 /// need to keep track of
450 /// the spans but this function is inspired from the later.
451 #[expect(clippy::cast_possible_truncation)]
452 #[must_use]
453 pub fn strip_doc_comment_decoration(doc: &str, comment_kind: CommentKind, span: Span) -> (String, Vec<(usize, Span)>) {
454     // one-line comments lose their prefix
455     if comment_kind == CommentKind::Line {
456         let mut doc = doc.to_owned();
457         doc.push('\n');
458         let len = doc.len();
459         // +3 skips the opening delimiter
460         return (doc, vec![(len, span.with_lo(span.lo() + BytePos(3)))]);
461     }
462
463     let mut sizes = vec![];
464     let mut contains_initial_stars = false;
465     for line in doc.lines() {
466         let offset = line.as_ptr() as usize - doc.as_ptr() as usize;
467         debug_assert_eq!(offset as u32 as usize, offset);
468         contains_initial_stars |= line.trim_start().starts_with('*');
469         // +1 adds the newline, +3 skips the opening delimiter
470         sizes.push((line.len() + 1, span.with_lo(span.lo() + BytePos(3 + offset as u32))));
471     }
472     if !contains_initial_stars {
473         return (doc.to_string(), sizes);
474     }
475     // remove the initial '*'s if any
476     let mut no_stars = String::with_capacity(doc.len());
477     for line in doc.lines() {
478         let mut chars = line.chars();
479         for c in &mut chars {
480             if c.is_whitespace() {
481                 no_stars.push(c);
482             } else {
483                 no_stars.push(if c == '*' { ' ' } else { c });
484                 break;
485             }
486         }
487         no_stars.push_str(chars.as_str());
488         no_stars.push('\n');
489     }
490
491     (no_stars, sizes)
492 }
493
494 #[derive(Copy, Clone, Default)]
495 struct DocHeaders {
496     safety: bool,
497     errors: bool,
498     panics: bool,
499 }
500
501 fn check_attrs(cx: &LateContext<'_>, valid_idents: &FxHashSet<String>, attrs: &[Attribute]) -> Option<DocHeaders> {
502     use pulldown_cmark::{BrokenLink, CowStr, Options};
503     /// We don't want the parser to choke on intra doc links. Since we don't
504     /// actually care about rendering them, just pretend that all broken links are
505     /// point to a fake address.
506     #[expect(clippy::unnecessary_wraps)] // we're following a type signature
507     fn fake_broken_link_callback<'a>(_: BrokenLink<'_>) -> Option<(CowStr<'a>, CowStr<'a>)> {
508         Some(("fake".into(), "fake".into()))
509     }
510
511     let mut doc = String::new();
512     let mut spans = vec![];
513
514     for attr in attrs {
515         if let AttrKind::DocComment(comment_kind, comment) = attr.kind {
516             let (comment, current_spans) = strip_doc_comment_decoration(comment.as_str(), comment_kind, attr.span);
517             spans.extend_from_slice(&current_spans);
518             doc.push_str(&comment);
519         } else if attr.has_name(sym::doc) {
520             // ignore mix of sugared and non-sugared doc
521             // don't trigger the safety or errors check
522             return None;
523         }
524     }
525
526     let mut current = 0;
527     for &mut (ref mut offset, _) in &mut spans {
528         let offset_copy = *offset;
529         *offset = current;
530         current += offset_copy;
531     }
532
533     if doc.is_empty() {
534         return Some(DocHeaders::default());
535     }
536
537     let mut cb = fake_broken_link_callback;
538
539     let parser =
540         pulldown_cmark::Parser::new_with_broken_link_callback(&doc, Options::empty(), Some(&mut cb)).into_offset_iter();
541     // Iterate over all `Events` and combine consecutive events into one
542     let events = parser.coalesce(|previous, current| {
543         use pulldown_cmark::Event::Text;
544
545         let previous_range = previous.1;
546         let current_range = current.1;
547
548         match (previous.0, current.0) {
549             (Text(previous), Text(current)) => {
550                 let mut previous = previous.to_string();
551                 previous.push_str(&current);
552                 Ok((Text(previous.into()), previous_range))
553             },
554             (previous, current) => Err(((previous, previous_range), (current, current_range))),
555         }
556     });
557     Some(check_doc(cx, valid_idents, events, &spans))
558 }
559
560 const RUST_CODE: &[&str] = &["rust", "no_run", "should_panic", "compile_fail"];
561
562 fn check_doc<'a, Events: Iterator<Item = (pulldown_cmark::Event<'a>, Range<usize>)>>(
563     cx: &LateContext<'_>,
564     valid_idents: &FxHashSet<String>,
565     events: Events,
566     spans: &[(usize, Span)],
567 ) -> DocHeaders {
568     // true if a safety header was found
569     use pulldown_cmark::Event::{
570         Code, End, FootnoteReference, HardBreak, Html, Rule, SoftBreak, Start, TaskListMarker, Text,
571     };
572     use pulldown_cmark::Tag::{CodeBlock, Heading, Item, Link, Paragraph};
573     use pulldown_cmark::{CodeBlockKind, CowStr};
574
575     let mut headers = DocHeaders::default();
576     let mut in_code = false;
577     let mut in_link = None;
578     let mut in_heading = false;
579     let mut is_rust = false;
580     let mut edition = None;
581     let mut ticks_unbalanced = false;
582     let mut text_to_check: Vec<(CowStr<'_>, Span)> = Vec::new();
583     let mut paragraph_span = spans.get(0).expect("function isn't called if doc comment is empty").1;
584     for (event, range) in events {
585         match event {
586             Start(CodeBlock(ref kind)) => {
587                 in_code = true;
588                 if let CodeBlockKind::Fenced(lang) = kind {
589                     for item in lang.split(',') {
590                         if item == "ignore" {
591                             is_rust = false;
592                             break;
593                         }
594                         if let Some(stripped) = item.strip_prefix("edition") {
595                             is_rust = true;
596                             edition = stripped.parse::<Edition>().ok();
597                         } else if item.is_empty() || RUST_CODE.contains(&item) {
598                             is_rust = true;
599                         }
600                     }
601                 }
602             },
603             End(CodeBlock(_)) => {
604                 in_code = false;
605                 is_rust = false;
606             },
607             Start(Link(_, url, _)) => in_link = Some(url),
608             End(Link(..)) => in_link = None,
609             Start(Heading(_, _, _) | Paragraph | Item) => {
610                 if let Start(Heading(_, _, _)) = event {
611                     in_heading = true;
612                 }
613                 ticks_unbalanced = false;
614                 let (_, span) = get_current_span(spans, range.start);
615                 paragraph_span = first_line_of_span(cx, span);
616             },
617             End(Heading(_, _, _) | Paragraph | Item) => {
618                 if let End(Heading(_, _, _)) = event {
619                     in_heading = false;
620                 }
621                 if ticks_unbalanced {
622                     span_lint_and_help(
623                         cx,
624                         DOC_MARKDOWN,
625                         paragraph_span,
626                         "backticks are unbalanced",
627                         None,
628                         "a backtick may be missing a pair",
629                     );
630                 } else {
631                     for (text, span) in text_to_check {
632                         check_text(cx, valid_idents, &text, span);
633                     }
634                 }
635                 text_to_check = Vec::new();
636             },
637             Start(_tag) | End(_tag) => (), // We don't care about other tags
638             Html(_html) => (),             // HTML is weird, just ignore it
639             SoftBreak | HardBreak | TaskListMarker(_) | Code(_) | Rule => (),
640             FootnoteReference(text) | Text(text) => {
641                 let (begin, span) = get_current_span(spans, range.start);
642                 paragraph_span = paragraph_span.with_hi(span.hi());
643                 ticks_unbalanced |= text.contains('`') && !in_code;
644                 if Some(&text) == in_link.as_ref() || ticks_unbalanced {
645                     // Probably a link of the form `<http://example.com>`
646                     // Which are represented as a link to "http://example.com" with
647                     // text "http://example.com" by pulldown-cmark
648                     continue;
649                 }
650                 let trimmed_text = text.trim();
651                 headers.safety |= in_heading && trimmed_text == "Safety";
652                 headers.safety |= in_heading && trimmed_text == "Implementation safety";
653                 headers.safety |= in_heading && trimmed_text == "Implementation Safety";
654                 headers.errors |= in_heading && trimmed_text == "Errors";
655                 headers.panics |= in_heading && trimmed_text == "Panics";
656                 if in_code {
657                     if is_rust {
658                         let edition = edition.unwrap_or_else(|| cx.tcx.sess.edition());
659                         check_code(cx, &text, edition, span);
660                     }
661                 } else {
662                     check_link_quotes(cx, in_link.is_some(), trimmed_text, span, &range, begin, text.len());
663                     // Adjust for the beginning of the current `Event`
664                     let span = span.with_lo(span.lo() + BytePos::from_usize(range.start - begin));
665                     text_to_check.push((text, span));
666                 }
667             },
668         }
669     }
670     headers
671 }
672
673 fn check_link_quotes(
674     cx: &LateContext<'_>,
675     in_link: bool,
676     trimmed_text: &str,
677     span: Span,
678     range: &Range<usize>,
679     begin: usize,
680     text_len: usize,
681 ) {
682     if in_link && trimmed_text.starts_with('\'') && trimmed_text.ends_with('\'') {
683         // fix the span to only point at the text within the link
684         let lo = span.lo() + BytePos::from_usize(range.start - begin);
685         span_lint(
686             cx,
687             DOC_LINK_WITH_QUOTES,
688             span.with_lo(lo).with_hi(lo + BytePos::from_usize(text_len)),
689             "possible intra-doc link using quotes instead of backticks",
690         );
691     }
692 }
693
694 fn get_current_span(spans: &[(usize, Span)], idx: usize) -> (usize, Span) {
695     let index = match spans.binary_search_by(|c| c.0.cmp(&idx)) {
696         Ok(o) => o,
697         Err(e) => e - 1,
698     };
699     spans[index]
700 }
701
702 fn check_code(cx: &LateContext<'_>, text: &str, edition: Edition, span: Span) {
703     fn has_needless_main(code: String, edition: Edition) -> bool {
704         rustc_driver::catch_fatal_errors(|| {
705             rustc_span::create_session_globals_then(edition, || {
706                 let filename = FileName::anon_source_code(&code);
707
708                 let sm = Lrc::new(SourceMap::new(FilePathMapping::empty()));
709                 let fallback_bundle =
710                     rustc_errors::fallback_fluent_bundle(rustc_errors::DEFAULT_LOCALE_RESOURCES, false);
711                 let emitter = EmitterWriter::new(
712                     Box::new(io::sink()),
713                     None,
714                     None,
715                     fallback_bundle,
716                     false,
717                     false,
718                     false,
719                     None,
720                     false,
721                     false,
722                 );
723                 let handler = Handler::with_emitter(false, None, Box::new(emitter));
724                 let sess = ParseSess::with_span_handler(handler, sm);
725
726                 let mut parser = match maybe_new_parser_from_source_str(&sess, filename, code) {
727                     Ok(p) => p,
728                     Err(errs) => {
729                         drop(errs);
730                         return false;
731                     },
732                 };
733
734                 let mut relevant_main_found = false;
735                 loop {
736                     match parser.parse_item(ForceCollect::No) {
737                         Ok(Some(item)) => match &item.kind {
738                             ItemKind::Fn(box Fn {
739                                 sig, body: Some(block), ..
740                             }) if item.ident.name == sym::main => {
741                                 let is_async = matches!(sig.header.asyncness, Async::Yes { .. });
742                                 let returns_nothing = match &sig.decl.output {
743                                     FnRetTy::Default(..) => true,
744                                     FnRetTy::Ty(ty) if ty.kind.is_unit() => true,
745                                     FnRetTy::Ty(_) => false,
746                                 };
747
748                                 if returns_nothing && !is_async && !block.stmts.is_empty() {
749                                     // This main function should be linted, but only if there are no other functions
750                                     relevant_main_found = true;
751                                 } else {
752                                     // This main function should not be linted, we're done
753                                     return false;
754                                 }
755                             },
756                             // Tests with one of these items are ignored
757                             ItemKind::Static(..)
758                             | ItemKind::Const(..)
759                             | ItemKind::ExternCrate(..)
760                             | ItemKind::ForeignMod(..)
761                             // Another function was found; this case is ignored
762                             | ItemKind::Fn(..) => return false,
763                             _ => {},
764                         },
765                         Ok(None) => break,
766                         Err(e) => {
767                             e.cancel();
768                             return false;
769                         },
770                     }
771                 }
772
773                 relevant_main_found
774             })
775         })
776         .ok()
777         .unwrap_or_default()
778     }
779
780     // Because of the global session, we need to create a new session in a different thread with
781     // the edition we need.
782     let text = text.to_owned();
783     if thread::spawn(move || has_needless_main(text, edition))
784         .join()
785         .expect("thread::spawn failed")
786     {
787         span_lint(cx, NEEDLESS_DOCTEST_MAIN, span, "needless `fn main` in doctest");
788     }
789 }
790
791 fn check_text(cx: &LateContext<'_>, valid_idents: &FxHashSet<String>, text: &str, span: Span) {
792     for word in text.split(|c: char| c.is_whitespace() || c == '\'') {
793         // Trim punctuation as in `some comment (see foo::bar).`
794         //                                                   ^^
795         // Or even as in `_foo bar_` which is emphasized. Also preserve `::` as a prefix/suffix.
796         let mut word = word.trim_matches(|c: char| !c.is_alphanumeric() && c != ':');
797
798         // Remove leading or trailing single `:` which may be part of a sentence.
799         if word.starts_with(':') && !word.starts_with("::") {
800             word = word.trim_start_matches(':');
801         }
802         if word.ends_with(':') && !word.ends_with("::") {
803             word = word.trim_end_matches(':');
804         }
805
806         if valid_idents.contains(word) || word.chars().all(|c| c == ':') {
807             continue;
808         }
809
810         // Adjust for the current word
811         let offset = word.as_ptr() as usize - text.as_ptr() as usize;
812         let span = Span::new(
813             span.lo() + BytePos::from_usize(offset),
814             span.lo() + BytePos::from_usize(offset + word.len()),
815             span.ctxt(),
816             span.parent(),
817         );
818
819         check_word(cx, word, span);
820     }
821 }
822
823 fn check_word(cx: &LateContext<'_>, word: &str, span: Span) {
824     /// Checks if a string is camel-case, i.e., contains at least two uppercase
825     /// letters (`Clippy` is ok) and one lower-case letter (`NASA` is ok).
826     /// Plurals are also excluded (`IDs` is ok).
827     fn is_camel_case(s: &str) -> bool {
828         if s.starts_with(|c: char| c.is_ascii_digit()) {
829             return false;
830         }
831
832         let s = s.strip_suffix('s').unwrap_or(s);
833
834         s.chars().all(char::is_alphanumeric)
835             && s.chars().filter(|&c| c.is_uppercase()).take(2).count() > 1
836             && s.chars().filter(|&c| c.is_lowercase()).take(1).count() > 0
837     }
838
839     fn has_underscore(s: &str) -> bool {
840         s != "_" && !s.contains("\\_") && s.contains('_')
841     }
842
843     fn has_hyphen(s: &str) -> bool {
844         s != "-" && s.contains('-')
845     }
846
847     if let Ok(url) = Url::parse(word) {
848         // try to get around the fact that `foo::bar` parses as a valid URL
849         if !url.cannot_be_a_base() {
850             span_lint(
851                 cx,
852                 DOC_MARKDOWN,
853                 span,
854                 "you should put bare URLs between `<`/`>` or make a proper Markdown link",
855             );
856
857             return;
858         }
859     }
860
861     // We assume that mixed-case words are not meant to be put inside backticks. (Issue #2343)
862     if has_underscore(word) && has_hyphen(word) {
863         return;
864     }
865
866     if has_underscore(word) || word.contains("::") || is_camel_case(word) {
867         let mut applicability = Applicability::MachineApplicable;
868
869         span_lint_and_then(
870             cx,
871             DOC_MARKDOWN,
872             span,
873             "item in documentation is missing backticks",
874             |diag| {
875                 let snippet = snippet_with_applicability(cx, span, "..", &mut applicability);
876                 diag.span_suggestion_with_style(
877                     span,
878                     "try",
879                     format!("`{snippet}`"),
880                     applicability,
881                     // always show the suggestion in a separate line, since the
882                     // inline presentation adds another pair of backticks
883                     SuggestionStyle::ShowAlways,
884                 );
885             },
886         );
887     }
888 }
889
890 struct FindPanicUnwrap<'a, 'tcx> {
891     cx: &'a LateContext<'tcx>,
892     panic_span: Option<Span>,
893     typeck_results: &'tcx ty::TypeckResults<'tcx>,
894 }
895
896 impl<'a, 'tcx> Visitor<'tcx> for FindPanicUnwrap<'a, 'tcx> {
897     type NestedFilter = nested_filter::OnlyBodies;
898
899     fn visit_expr(&mut self, expr: &'tcx Expr<'_>) {
900         if self.panic_span.is_some() {
901             return;
902         }
903
904         if let Some(macro_call) = root_macro_call_first_node(self.cx, expr) {
905             if is_panic(self.cx, macro_call.def_id)
906                 || matches!(
907                     self.cx.tcx.item_name(macro_call.def_id).as_str(),
908                     "assert" | "assert_eq" | "assert_ne" | "todo"
909                 )
910             {
911                 self.panic_span = Some(macro_call.span);
912             }
913         }
914
915         // check for `unwrap`
916         if let Some(arglists) = method_chain_args(expr, &["unwrap"]) {
917             let receiver_ty = self.typeck_results.expr_ty(arglists[0].0).peel_refs();
918             if is_type_diagnostic_item(self.cx, receiver_ty, sym::Option)
919                 || is_type_diagnostic_item(self.cx, receiver_ty, sym::Result)
920             {
921                 self.panic_span = Some(expr.span);
922             }
923         }
924
925         // and check sub-expressions
926         intravisit::walk_expr(self, expr);
927     }
928
929     // Panics in const blocks will cause compilation to fail.
930     fn visit_anon_const(&mut self, _: &'tcx AnonConst) {}
931
932     fn nested_visit_map(&mut self) -> Self::Map {
933         self.cx.tcx.hir()
934     }
935 }