]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/clippy_lints/src/doc.rs
Remove hir::TraitItem::attrs.
[rust.git] / src / tools / clippy / clippy_lints / src / doc.rs
1 use crate::utils::{
2     implements_trait, is_entrypoint_fn, is_expn_of, is_type_diagnostic_item, match_panic_def_id, method_chain_args,
3     return_ty, span_lint, span_lint_and_note,
4 };
5 use if_chain::if_chain;
6 use itertools::Itertools;
7 use rustc_ast::ast::{Async, AttrKind, Attribute, FnKind, FnRetTy, ItemKind};
8 use rustc_ast::token::CommentKind;
9 use rustc_data_structures::fx::FxHashSet;
10 use rustc_data_structures::sync::Lrc;
11 use rustc_errors::emitter::EmitterWriter;
12 use rustc_errors::Handler;
13 use rustc_hir as hir;
14 use rustc_hir::intravisit::{self, NestedVisitorMap, Visitor};
15 use rustc_hir::{Expr, ExprKind, QPath};
16 use rustc_lint::{LateContext, LateLintPass};
17 use rustc_middle::hir::map::Map;
18 use rustc_middle::lint::in_external_macro;
19 use rustc_middle::ty;
20 use rustc_parse::maybe_new_parser_from_source_str;
21 use rustc_parse::parser::ForceCollect;
22 use rustc_session::parse::ParseSess;
23 use rustc_session::{declare_tool_lint, impl_lint_pass};
24 use rustc_span::edition::Edition;
25 use rustc_span::source_map::{BytePos, FilePathMapping, MultiSpan, SourceMap, Span};
26 use rustc_span::{sym, FileName, Pos};
27 use std::io;
28 use std::ops::Range;
29 use url::Url;
30
31 declare_clippy_lint! {
32     /// **What it does:** Checks for the presence of `_`, `::` or camel-case words
33     /// outside ticks in documentation.
34     ///
35     /// **Why is this bad?** *Rustdoc* supports markdown formatting, `_`, `::` and
36     /// camel-case probably indicates some code which should be included between
37     /// ticks. `_` can also be used for emphasis in markdown, this lint tries to
38     /// consider that.
39     ///
40     /// **Known problems:** Lots of bad docs won’t be fixed, what the lint checks
41     /// for is limited, and there are still false positives.
42     ///
43     /// In addition, when writing documentation comments, including `[]` brackets
44     /// inside a link text would trip the parser. Therfore, documenting link with
45     /// `[`SmallVec<[T; INLINE_CAPACITY]>`]` and then [`SmallVec<[T; INLINE_CAPACITY]>`]: SmallVec
46     /// would fail.
47     ///
48     /// **Examples:**
49     /// ```rust
50     /// /// Do something with the foo_bar parameter. See also
51     /// /// that::other::module::foo.
52     /// // ^ `foo_bar` and `that::other::module::foo` should be ticked.
53     /// fn doit(foo_bar: usize) {}
54     /// ```
55     ///
56     /// ```rust
57     /// // Link text with `[]` brackets should be written as following:
58     /// /// Consume the array and return the inner
59     /// /// [`SmallVec<[T; INLINE_CAPACITY]>`][SmallVec].
60     /// /// [SmallVec]: SmallVec
61     /// fn main() {}
62     /// ```
63     pub DOC_MARKDOWN,
64     pedantic,
65     "presence of `_`, `::` or camel-case outside backticks in documentation"
66 }
67
68 declare_clippy_lint! {
69     /// **What it does:** Checks for the doc comments of publicly visible
70     /// unsafe functions and warns if there is no `# Safety` section.
71     ///
72     /// **Why is this bad?** Unsafe functions should document their safety
73     /// preconditions, so that users can be sure they are using them safely.
74     ///
75     /// **Known problems:** None.
76     ///
77     /// **Examples:**
78     /// ```rust
79     ///# type Universe = ();
80     /// /// This function should really be documented
81     /// pub unsafe fn start_apocalypse(u: &mut Universe) {
82     ///     unimplemented!();
83     /// }
84     /// ```
85     ///
86     /// At least write a line about safety:
87     ///
88     /// ```rust
89     ///# type Universe = ();
90     /// /// # Safety
91     /// ///
92     /// /// This function should not be called before the horsemen are ready.
93     /// pub unsafe fn start_apocalypse(u: &mut Universe) {
94     ///     unimplemented!();
95     /// }
96     /// ```
97     pub MISSING_SAFETY_DOC,
98     style,
99     "`pub unsafe fn` without `# Safety` docs"
100 }
101
102 declare_clippy_lint! {
103     /// **What it does:** Checks the doc comments of publicly visible functions that
104     /// return a `Result` type and warns if there is no `# Errors` section.
105     ///
106     /// **Why is this bad?** Documenting the type of errors that can be returned from a
107     /// function can help callers write code to handle the errors appropriately.
108     ///
109     /// **Known problems:** None.
110     ///
111     /// **Examples:**
112     ///
113     /// Since the following function returns a `Result` it has an `# Errors` section in
114     /// its doc comment:
115     ///
116     /// ```rust
117     ///# use std::io;
118     /// /// # Errors
119     /// ///
120     /// /// Will return `Err` if `filename` does not exist or the user does not have
121     /// /// permission to read it.
122     /// pub fn read(filename: String) -> io::Result<String> {
123     ///     unimplemented!();
124     /// }
125     /// ```
126     pub MISSING_ERRORS_DOC,
127     pedantic,
128     "`pub fn` returns `Result` without `# Errors` in doc comment"
129 }
130
131 declare_clippy_lint! {
132     /// **What it does:** Checks the doc comments of publicly visible functions that
133     /// may panic and warns if there is no `# Panics` section.
134     ///
135     /// **Why is this bad?** Documenting the scenarios in which panicking occurs
136     /// can help callers who do not want to panic to avoid those situations.
137     ///
138     /// **Known problems:** None.
139     ///
140     /// **Examples:**
141     ///
142     /// Since the following function may panic it has a `# Panics` section in
143     /// its doc comment:
144     ///
145     /// ```rust
146     /// /// # Panics
147     /// ///
148     /// /// Will panic if y is 0
149     /// pub fn divide_by(x: i32, y: i32) -> i32 {
150     ///     if y == 0 {
151     ///         panic!("Cannot divide by 0")
152     ///     } else {
153     ///         x / y
154     ///     }
155     /// }
156     /// ```
157     pub MISSING_PANICS_DOC,
158     pedantic,
159     "`pub fn` may panic without `# Panics` in doc comment"
160 }
161
162 declare_clippy_lint! {
163     /// **What it does:** Checks for `fn main() { .. }` in doctests
164     ///
165     /// **Why is this bad?** The test can be shorter (and likely more readable)
166     /// if the `fn main()` is left implicit.
167     ///
168     /// **Known problems:** None.
169     ///
170     /// **Examples:**
171     /// ``````rust
172     /// /// An example of a doctest with a `main()` function
173     /// ///
174     /// /// # Examples
175     /// ///
176     /// /// ```
177     /// /// fn main() {
178     /// ///     // this needs not be in an `fn`
179     /// /// }
180     /// /// ```
181     /// fn needless_main() {
182     ///     unimplemented!();
183     /// }
184     /// ``````
185     pub NEEDLESS_DOCTEST_MAIN,
186     style,
187     "presence of `fn main() {` in code examples"
188 }
189
190 #[allow(clippy::module_name_repetitions)]
191 #[derive(Clone)]
192 pub struct DocMarkdown {
193     valid_idents: FxHashSet<String>,
194     in_trait_impl: bool,
195 }
196
197 impl DocMarkdown {
198     pub fn new(valid_idents: FxHashSet<String>) -> Self {
199         Self {
200             valid_idents,
201             in_trait_impl: false,
202         }
203     }
204 }
205
206 impl_lint_pass!(DocMarkdown =>
207     [DOC_MARKDOWN, MISSING_SAFETY_DOC, MISSING_ERRORS_DOC, MISSING_PANICS_DOC, NEEDLESS_DOCTEST_MAIN]
208 );
209
210 impl<'tcx> LateLintPass<'tcx> for DocMarkdown {
211     fn check_crate(&mut self, cx: &LateContext<'tcx>, _: &'tcx hir::Crate<'_>) {
212         let attrs = cx.tcx.hir().attrs(hir::CRATE_HIR_ID);
213         check_attrs(cx, &self.valid_idents, attrs);
214     }
215
216     fn check_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx hir::Item<'_>) {
217         let headers = check_attrs(cx, &self.valid_idents, &item.attrs);
218         match item.kind {
219             hir::ItemKind::Fn(ref sig, _, body_id) => {
220                 if !(is_entrypoint_fn(cx, item.def_id.to_def_id()) || in_external_macro(cx.tcx.sess, item.span)) {
221                     let body = cx.tcx.hir().body(body_id);
222                     let mut fpu = FindPanicUnwrap {
223                         cx,
224                         typeck_results: cx.tcx.typeck(item.def_id),
225                         panic_span: None,
226                     };
227                     fpu.visit_expr(&body.value);
228                     lint_for_missing_headers(
229                         cx,
230                         item.hir_id(),
231                         item.span,
232                         sig,
233                         headers,
234                         Some(body_id),
235                         fpu.panic_span,
236                     );
237                 }
238             },
239             hir::ItemKind::Impl(ref impl_) => {
240                 self.in_trait_impl = impl_.of_trait.is_some();
241             },
242             _ => {},
243         }
244     }
245
246     fn check_item_post(&mut self, _cx: &LateContext<'tcx>, item: &'tcx hir::Item<'_>) {
247         if let hir::ItemKind::Impl { .. } = item.kind {
248             self.in_trait_impl = false;
249         }
250     }
251
252     fn check_trait_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx hir::TraitItem<'_>) {
253         let attrs = cx.tcx.hir().attrs(item.hir_id());
254         let headers = check_attrs(cx, &self.valid_idents, attrs);
255         if let hir::TraitItemKind::Fn(ref sig, ..) = item.kind {
256             if !in_external_macro(cx.tcx.sess, item.span) {
257                 lint_for_missing_headers(cx, item.hir_id(), item.span, sig, headers, None, None);
258             }
259         }
260     }
261
262     fn check_impl_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx hir::ImplItem<'_>) {
263         let headers = check_attrs(cx, &self.valid_idents, &item.attrs);
264         if self.in_trait_impl || in_external_macro(cx.tcx.sess, item.span) {
265             return;
266         }
267         if let hir::ImplItemKind::Fn(ref sig, body_id) = item.kind {
268             let body = cx.tcx.hir().body(body_id);
269             let mut fpu = FindPanicUnwrap {
270                 cx,
271                 typeck_results: cx.tcx.typeck(item.def_id),
272                 panic_span: None,
273             };
274             fpu.visit_expr(&body.value);
275             lint_for_missing_headers(
276                 cx,
277                 item.hir_id(),
278                 item.span,
279                 sig,
280                 headers,
281                 Some(body_id),
282                 fpu.panic_span,
283             );
284         }
285     }
286 }
287
288 fn lint_for_missing_headers<'tcx>(
289     cx: &LateContext<'tcx>,
290     hir_id: hir::HirId,
291     span: impl Into<MultiSpan> + Copy,
292     sig: &hir::FnSig<'_>,
293     headers: DocHeaders,
294     body_id: Option<hir::BodyId>,
295     panic_span: Option<Span>,
296 ) {
297     if !cx.access_levels.is_exported(hir_id) {
298         return; // Private functions do not require doc comments
299     }
300     if !headers.safety && sig.header.unsafety == hir::Unsafety::Unsafe {
301         span_lint(
302             cx,
303             MISSING_SAFETY_DOC,
304             span,
305             "unsafe function's docs miss `# Safety` section",
306         );
307     }
308     if !headers.panics && panic_span.is_some() {
309         span_lint_and_note(
310             cx,
311             MISSING_PANICS_DOC,
312             span,
313             "docs for function which may panic missing `# Panics` section",
314             panic_span,
315             "first possible panic found here",
316         );
317     }
318     if !headers.errors {
319         if is_type_diagnostic_item(cx, return_ty(cx, hir_id), sym::result_type) {
320             span_lint(
321                 cx,
322                 MISSING_ERRORS_DOC,
323                 span,
324                 "docs for function returning `Result` missing `# Errors` section",
325             );
326         } else {
327             if_chain! {
328                 if let Some(body_id) = body_id;
329                 if let Some(future) = cx.tcx.lang_items().future_trait();
330                 let def_id = cx.tcx.hir().body_owner_def_id(body_id);
331                 let mir = cx.tcx.optimized_mir(def_id.to_def_id());
332                 let ret_ty = mir.return_ty();
333                 if implements_trait(cx, ret_ty, future, &[]);
334                 if let ty::Opaque(_, subs) = ret_ty.kind();
335                 if let Some(gen) = subs.types().next();
336                 if let ty::Generator(_, subs, _) = gen.kind();
337                 if is_type_diagnostic_item(cx, subs.as_generator().return_ty(), sym::result_type);
338                 then {
339                     span_lint(
340                         cx,
341                         MISSING_ERRORS_DOC,
342                         span,
343                         "docs for function returning `Result` missing `# Errors` section",
344                     );
345                 }
346             }
347         }
348     }
349 }
350
351 /// Cleanup documentation decoration.
352 ///
353 /// We can't use `rustc_ast::attr::AttributeMethods::with_desugared_doc` or
354 /// `rustc_ast::parse::lexer::comments::strip_doc_comment_decoration` because we
355 /// need to keep track of
356 /// the spans but this function is inspired from the later.
357 #[allow(clippy::cast_possible_truncation)]
358 #[must_use]
359 pub fn strip_doc_comment_decoration(doc: &str, comment_kind: CommentKind, span: Span) -> (String, Vec<(usize, Span)>) {
360     // one-line comments lose their prefix
361     if comment_kind == CommentKind::Line {
362         let mut doc = doc.to_owned();
363         doc.push('\n');
364         let len = doc.len();
365         // +3 skips the opening delimiter
366         return (doc, vec![(len, span.with_lo(span.lo() + BytePos(3)))]);
367     }
368
369     let mut sizes = vec![];
370     let mut contains_initial_stars = false;
371     for line in doc.lines() {
372         let offset = line.as_ptr() as usize - doc.as_ptr() as usize;
373         debug_assert_eq!(offset as u32 as usize, offset);
374         contains_initial_stars |= line.trim_start().starts_with('*');
375         // +1 adds the newline, +3 skips the opening delimiter
376         sizes.push((line.len() + 1, span.with_lo(span.lo() + BytePos(3 + offset as u32))));
377     }
378     if !contains_initial_stars {
379         return (doc.to_string(), sizes);
380     }
381     // remove the initial '*'s if any
382     let mut no_stars = String::with_capacity(doc.len());
383     for line in doc.lines() {
384         let mut chars = line.chars();
385         while let Some(c) = chars.next() {
386             if c.is_whitespace() {
387                 no_stars.push(c);
388             } else {
389                 no_stars.push(if c == '*' { ' ' } else { c });
390                 break;
391             }
392         }
393         no_stars.push_str(chars.as_str());
394         no_stars.push('\n');
395     }
396
397     (no_stars, sizes)
398 }
399
400 #[derive(Copy, Clone)]
401 struct DocHeaders {
402     safety: bool,
403     errors: bool,
404     panics: bool,
405 }
406
407 fn check_attrs<'a>(cx: &LateContext<'_>, valid_idents: &FxHashSet<String>, attrs: &'a [Attribute]) -> DocHeaders {
408     let mut doc = String::new();
409     let mut spans = vec![];
410
411     for attr in attrs {
412         if let AttrKind::DocComment(comment_kind, comment) = attr.kind {
413             let (comment, current_spans) = strip_doc_comment_decoration(&comment.as_str(), comment_kind, attr.span);
414             spans.extend_from_slice(&current_spans);
415             doc.push_str(&comment);
416         } else if attr.has_name(sym::doc) {
417             // ignore mix of sugared and non-sugared doc
418             // don't trigger the safety or errors check
419             return DocHeaders {
420                 safety: true,
421                 errors: true,
422                 panics: true,
423             };
424         }
425     }
426
427     let mut current = 0;
428     for &mut (ref mut offset, _) in &mut spans {
429         let offset_copy = *offset;
430         *offset = current;
431         current += offset_copy;
432     }
433
434     if doc.is_empty() {
435         return DocHeaders {
436             safety: false,
437             errors: false,
438             panics: false,
439         };
440     }
441
442     let parser = pulldown_cmark::Parser::new(&doc).into_offset_iter();
443     // Iterate over all `Events` and combine consecutive events into one
444     let events = parser.coalesce(|previous, current| {
445         use pulldown_cmark::Event::Text;
446
447         let previous_range = previous.1;
448         let current_range = current.1;
449
450         match (previous.0, current.0) {
451             (Text(previous), Text(current)) => {
452                 let mut previous = previous.to_string();
453                 previous.push_str(&current);
454                 Ok((Text(previous.into()), previous_range))
455             },
456             (previous, current) => Err(((previous, previous_range), (current, current_range))),
457         }
458     });
459     check_doc(cx, valid_idents, events, &spans)
460 }
461
462 const RUST_CODE: &[&str] = &["rust", "no_run", "should_panic", "compile_fail"];
463
464 fn check_doc<'a, Events: Iterator<Item = (pulldown_cmark::Event<'a>, Range<usize>)>>(
465     cx: &LateContext<'_>,
466     valid_idents: &FxHashSet<String>,
467     events: Events,
468     spans: &[(usize, Span)],
469 ) -> DocHeaders {
470     // true if a safety header was found
471     use pulldown_cmark::CodeBlockKind;
472     use pulldown_cmark::Event::{
473         Code, End, FootnoteReference, HardBreak, Html, Rule, SoftBreak, Start, TaskListMarker, Text,
474     };
475     use pulldown_cmark::Tag::{CodeBlock, Heading, Link};
476
477     let mut headers = DocHeaders {
478         safety: false,
479         errors: false,
480         panics: false,
481     };
482     let mut in_code = false;
483     let mut in_link = None;
484     let mut in_heading = false;
485     let mut is_rust = false;
486     let mut edition = None;
487     for (event, range) in events {
488         match event {
489             Start(CodeBlock(ref kind)) => {
490                 in_code = true;
491                 if let CodeBlockKind::Fenced(lang) = kind {
492                     for item in lang.split(',') {
493                         if item == "ignore" {
494                             is_rust = false;
495                             break;
496                         }
497                         if let Some(stripped) = item.strip_prefix("edition") {
498                             is_rust = true;
499                             edition = stripped.parse::<Edition>().ok();
500                         } else if item.is_empty() || RUST_CODE.contains(&item) {
501                             is_rust = true;
502                         }
503                     }
504                 }
505             },
506             End(CodeBlock(_)) => {
507                 in_code = false;
508                 is_rust = false;
509             },
510             Start(Link(_, url, _)) => in_link = Some(url),
511             End(Link(..)) => in_link = None,
512             Start(Heading(_)) => in_heading = true,
513             End(Heading(_)) => in_heading = false,
514             Start(_tag) | End(_tag) => (), // We don't care about other tags
515             Html(_html) => (),             // HTML is weird, just ignore it
516             SoftBreak | HardBreak | TaskListMarker(_) | Code(_) | Rule => (),
517             FootnoteReference(text) | Text(text) => {
518                 if Some(&text) == in_link.as_ref() {
519                     // Probably a link of the form `<http://example.com>`
520                     // Which are represented as a link to "http://example.com" with
521                     // text "http://example.com" by pulldown-cmark
522                     continue;
523                 }
524                 headers.safety |= in_heading && text.trim() == "Safety";
525                 headers.errors |= in_heading && text.trim() == "Errors";
526                 headers.panics |= in_heading && text.trim() == "Panics";
527                 let index = match spans.binary_search_by(|c| c.0.cmp(&range.start)) {
528                     Ok(o) => o,
529                     Err(e) => e - 1,
530                 };
531                 let (begin, span) = spans[index];
532                 if in_code {
533                     if is_rust {
534                         let edition = edition.unwrap_or_else(|| cx.tcx.sess.edition());
535                         check_code(cx, &text, edition, span);
536                     }
537                 } else {
538                     // Adjust for the beginning of the current `Event`
539                     let span = span.with_lo(span.lo() + BytePos::from_usize(range.start - begin));
540
541                     check_text(cx, valid_idents, &text, span);
542                 }
543             },
544         }
545     }
546     headers
547 }
548
549 fn check_code(cx: &LateContext<'_>, text: &str, edition: Edition, span: Span) {
550     fn has_needless_main(code: &str, edition: Edition) -> bool {
551         rustc_driver::catch_fatal_errors(|| {
552             rustc_span::with_session_globals(edition, || {
553                 let filename = FileName::anon_source_code(code);
554
555                 let sm = Lrc::new(SourceMap::new(FilePathMapping::empty()));
556                 let emitter = EmitterWriter::new(box io::sink(), None, false, false, false, None, false);
557                 let handler = Handler::with_emitter(false, None, box emitter);
558                 let sess = ParseSess::with_span_handler(handler, sm);
559
560                 let mut parser = match maybe_new_parser_from_source_str(&sess, filename, code.into()) {
561                     Ok(p) => p,
562                     Err(errs) => {
563                         for mut err in errs {
564                             err.cancel();
565                         }
566                         return false;
567                     },
568                 };
569
570                 let mut relevant_main_found = false;
571                 loop {
572                     match parser.parse_item(ForceCollect::No) {
573                         Ok(Some(item)) => match &item.kind {
574                             // Tests with one of these items are ignored
575                             ItemKind::Static(..)
576                             | ItemKind::Const(..)
577                             | ItemKind::ExternCrate(..)
578                             | ItemKind::ForeignMod(..) => return false,
579                             // We found a main function ...
580                             ItemKind::Fn(box FnKind(_, sig, _, Some(block))) if item.ident.name == sym::main => {
581                                 let is_async = matches!(sig.header.asyncness, Async::Yes { .. });
582                                 let returns_nothing = match &sig.decl.output {
583                                     FnRetTy::Default(..) => true,
584                                     FnRetTy::Ty(ty) if ty.kind.is_unit() => true,
585                                     _ => false,
586                                 };
587
588                                 if returns_nothing && !is_async && !block.stmts.is_empty() {
589                                     // This main function should be linted, but only if there are no other functions
590                                     relevant_main_found = true;
591                                 } else {
592                                     // This main function should not be linted, we're done
593                                     return false;
594                                 }
595                             },
596                             // Another function was found; this case is ignored too
597                             ItemKind::Fn(..) => return false,
598                             _ => {},
599                         },
600                         Ok(None) => break,
601                         Err(mut e) => {
602                             e.cancel();
603                             return false;
604                         },
605                     }
606                 }
607
608                 relevant_main_found
609             })
610         })
611         .ok()
612         .unwrap_or_default()
613     }
614
615     if has_needless_main(text, edition) {
616         span_lint(cx, NEEDLESS_DOCTEST_MAIN, span, "needless `fn main` in doctest");
617     }
618 }
619
620 fn check_text(cx: &LateContext<'_>, valid_idents: &FxHashSet<String>, text: &str, span: Span) {
621     for word in text.split(|c: char| c.is_whitespace() || c == '\'') {
622         // Trim punctuation as in `some comment (see foo::bar).`
623         //                                                   ^^
624         // Or even as in `_foo bar_` which is emphasized.
625         let word = word.trim_matches(|c: char| !c.is_alphanumeric());
626
627         if valid_idents.contains(word) {
628             continue;
629         }
630
631         // Adjust for the current word
632         let offset = word.as_ptr() as usize - text.as_ptr() as usize;
633         let span = Span::new(
634             span.lo() + BytePos::from_usize(offset),
635             span.lo() + BytePos::from_usize(offset + word.len()),
636             span.ctxt(),
637         );
638
639         check_word(cx, word, span);
640     }
641 }
642
643 fn check_word(cx: &LateContext<'_>, word: &str, span: Span) {
644     /// Checks if a string is camel-case, i.e., contains at least two uppercase
645     /// letters (`Clippy` is ok) and one lower-case letter (`NASA` is ok).
646     /// Plurals are also excluded (`IDs` is ok).
647     fn is_camel_case(s: &str) -> bool {
648         if s.starts_with(|c: char| c.is_digit(10)) {
649             return false;
650         }
651
652         let s = s.strip_suffix('s').unwrap_or(s);
653
654         s.chars().all(char::is_alphanumeric)
655             && s.chars().filter(|&c| c.is_uppercase()).take(2).count() > 1
656             && s.chars().filter(|&c| c.is_lowercase()).take(1).count() > 0
657     }
658
659     fn has_underscore(s: &str) -> bool {
660         s != "_" && !s.contains("\\_") && s.contains('_')
661     }
662
663     fn has_hyphen(s: &str) -> bool {
664         s != "-" && s.contains('-')
665     }
666
667     if let Ok(url) = Url::parse(word) {
668         // try to get around the fact that `foo::bar` parses as a valid URL
669         if !url.cannot_be_a_base() {
670             span_lint(
671                 cx,
672                 DOC_MARKDOWN,
673                 span,
674                 "you should put bare URLs between `<`/`>` or make a proper Markdown link",
675             );
676
677             return;
678         }
679     }
680
681     // We assume that mixed-case words are not meant to be put inside bacticks. (Issue #2343)
682     if has_underscore(word) && has_hyphen(word) {
683         return;
684     }
685
686     if has_underscore(word) || word.contains("::") || is_camel_case(word) {
687         span_lint(
688             cx,
689             DOC_MARKDOWN,
690             span,
691             &format!("you should put `{}` between ticks in the documentation", word),
692         );
693     }
694 }
695
696 struct FindPanicUnwrap<'a, 'tcx> {
697     cx: &'a LateContext<'tcx>,
698     panic_span: Option<Span>,
699     typeck_results: &'tcx ty::TypeckResults<'tcx>,
700 }
701
702 impl<'a, 'tcx> Visitor<'tcx> for FindPanicUnwrap<'a, 'tcx> {
703     type Map = Map<'tcx>;
704
705     fn visit_expr(&mut self, expr: &'tcx Expr<'_>) {
706         if self.panic_span.is_some() {
707             return;
708         }
709
710         // check for `begin_panic`
711         if_chain! {
712             if let ExprKind::Call(ref func_expr, _) = expr.kind;
713             if let ExprKind::Path(QPath::Resolved(_, ref path)) = func_expr.kind;
714             if let Some(path_def_id) = path.res.opt_def_id();
715             if match_panic_def_id(self.cx, path_def_id);
716             if is_expn_of(expr.span, "unreachable").is_none();
717             then {
718                 self.panic_span = Some(expr.span);
719             }
720         }
721
722         // check for `unwrap`
723         if let Some(arglists) = method_chain_args(expr, &["unwrap"]) {
724             let reciever_ty = self.typeck_results.expr_ty(&arglists[0][0]).peel_refs();
725             if is_type_diagnostic_item(self.cx, reciever_ty, sym::option_type)
726                 || is_type_diagnostic_item(self.cx, reciever_ty, sym::result_type)
727             {
728                 self.panic_span = Some(expr.span);
729             }
730         }
731
732         // and check sub-expressions
733         intravisit::walk_expr(self, expr);
734     }
735
736     fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
737         NestedVisitorMap::OnlyBodies(self.cx.tcx.hir())
738     }
739 }