| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2020-01-18 | Rustup to rust-lang/rust#68204 | Yuki Okushi | -2/+5 | |
| 2020-01-14 | Omit doc safety/errors header checking for main | Andre Bogus | -2/+4 | |
| 2020-01-13 | Rustup to rust-lang/rust#68045 | Yuki Okushi | -1/+2 | |
| 2020-01-11 | Rustup to rust-lang/rust#67806 | Yuki Okushi | -3/+2 | |
| 2020-01-07 | Rustup to rust-lang/rust#67886 | Yuki Okushi | -1/+1 | |
| 2020-01-04 | External macro check for missing_*_doc | Andre Bogus | -4/+8 | |
| 2020-01-04 | Rustup to https://github.com/rust-lang/rust/pull/67853 | Philipp Hansch | -1/+1 | |
| Specifically caused by https://github.com/rust-lang/rust/pull/67786 | ||||
| 2019-12-31 | Rustup to rust-lang/rust#67707 | Yuki Okushi | -1/+1 | |
| 2019-12-30 | Rustup to rust-lang/rust#66942 | Yuki Okushi | -1/+1 | |
| 2019-12-24 | Auto merge of #4947 - rust-lang:doc-main-extern-crate, r=flip1995 | bors | -1/+3 | |
| Avoid needless_doctest_main on 'extern crate' This fixes #4927. r? @flip1995 changelog: none | ||||
| 2019-12-24 | Avoid needless_doctest_main on 'extern crate' | Andre Bogus | -1/+3 | |
| 2019-12-24 | do minor cleanups | Lzu Tao | -1/+0 | |
| * ToString and AsRef are in prelude, no need to import them | ||||
| 2019-12-22 | Add <'_> where necessary | flip1995 | -5/+5 | |
| 2019-12-06 | Add lint for pub fns returning a `Result` without documenting errors | RobbieClarken | -45/+92 | |
| The Rust Book recommends that functions that return a `Result` type have a doc comment with an `# Errors` section describing the kind of errors that can be returned (https://doc.rust-lang.org/book/ch14-02-publishing-to-crates-io.html#commonly-used-sections). This change adds a lint to enforce this. The lint is allow by default; it can be enabled with `#![warn(clippy::missing_errors_doc)]`. Closes #4854. | ||||
| 2019-12-04 | Rustup to rust-lang/rust#66878 | Matthias Krüger | -1/+2 | |
| 2019-11-29 | Less needless_doctest_main false positives | Andre Bogus | -1/+1 | |
| This checks if a) the `fn main() {}` function is empty or if the doctest contains a `static`. In both cases don't lint. | ||||
| 2019-11-08 | Rustup rust-lang/rust#66188 | HMPerson1 | -2/+2 | |
| 2019-11-07 | Rustup to rustc 1.40.0-nightly (7a76fe76f 2019-11-07) | Manish Goregaokar | -8/+6 | |
| 2019-10-14 | new lints around `#[must_use]` fns | Andre Bogus | -0/+1 | |
| `must_use_unit` lints unit-returning functions with a `#[must_use]` attribute, suggesting to remove it. `double_must_use` lints functions with a plain `#[must_use]` attribute, but which return a type which is already `#[must_use]`, so the attribute has no benefit. `must_use_candidate` is a pedantic lint that lints functions and methods that return some non-unit type that is not already `#[must_use]` and suggests to add the annotation. | ||||
| 2019-10-02 | account for doc visibility | Andre Bogus | -13/+65 | |
| 2019-10-02 | New lint: needless_doc_main | Andre Bogus | -10/+43 | |
| 2019-09-27 | Rustup to rust-lang/rust#64813 | flip1995 | -1/+1 | |
| 2019-09-19 | New lint: Require `# Safety` section in pub unsafe fn docs | Andre Bogus | -28/+83 | |
| 2019-08-03 | Doctests: Enable running doc tests for pedantic lints | Philipp Hansch | -1/+1 | |
| 2019-05-17 | Prevent symbocalypse | Oliver Scherer | -2/+1 | |
| 2019-05-14 | Use symbols instead of strings | Oliver Scherer | -1/+2 | |
| 2019-04-24 | Update pulldown_cmark to 0.5 | Philipp Hansch | -40/+23 | |
| We now no longer have to use our own wrapper around `Parser` and can use the new `OffsetIter`. | ||||
| 2019-04-17 | Use lint pass macros | Matthew Kraai | -13/+6 | |
| Fixes #3917. | ||||
| 2019-03-18 | name -> check_name | Mateusz Mikuła | -1/+1 | |
| 2019-03-10 | Addressed points raised in review. | Alexander Regueiro | -3/+2 | |
| 2019-03-10 | Various cosmetic improvements. | Alexander Regueiro | -2/+2 | |
| 2019-03-05 | move lint documentation into macro invocations | Andy Russell | -18/+18 | |
| 2019-01-27 | rustup https://github.com/rust-lang/rust/pull/57726 | Matthias Krüger | -0/+4 | |
| 2019-01-08 | Remove all copyright license headers | Philipp Hansch | -9/+0 | |
| Discussion previously happened in https://github.com/rust-lang/rust/pull/43498 | ||||
| 2018-12-29 | Use an FxHashSet for valid idents in documentation lint | Konrad Borowski | -6/+7 | |
| 2018-12-29 | Remove crate:: prefixes from crate paths | Konrad Borowski | -5/+5 | |
| This is somewhat misleading, as those are actually external crates, and don't need a crate:: prefix. | ||||
| 2018-12-14 | rustup rust-lang/rust#52994 | flip1995 | -1/+1 | |
| s/trim_left/trim_start/ s/trim_right/trim_end/ | ||||
| 2018-12-12 | Fix doc_markdown mixed case false positive | Philipp Hansch | -0/+9 | |
| 2018-12-12 | Fix doc_markdown off by one issue | Philipp Hansch | -1/+1 | |
| 2018-11-27 | Run rustfmt on clippy_lints | flip1995 | -15/+7 | |
| 2018-10-06 | Add license header to Rust files | Manish Goregaokar | -0/+10 | |
| 2018-09-15 | Reintroduce `extern crate` for non-Cargo dependencies. | Eduard-Mihai Burtescu | -5/+5 | |
| 2018-08-29 | Adapt codebase to the tool_lints | flip1995 | -1/+1 | |
| 2018-08-29 | Switch to declare_tool_lint macro | flip1995 | -1/+1 | |
| 2018-08-28 | Update imports and rustup | Oliver Schneider | -1/+1 | |
| 2018-08-19 | codemap -> source_map | Manish Goregaokar | -1/+1 | |
| https://github.com/rust-lang/rust/pull/52953 | ||||
| 2018-07-23 | Rustup | Oliver Schneider | -6/+6 | |
| 2018-07-19 | Remove import of rustc | Manish Goregaokar | -0/+1 | |
| 2018-05-30 | Run rustfix | Mateusz Mikuła | -1/+1 | |
| 2018-05-04 | Satisfy dogfood | Oliver Schneider | -4/+2 | |
