| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2020-01-13 | Rustup to rust-lang/rust#68045 | Yuki Okushi | -1/+1 | |
| 2020-01-11 | Rustup to rust-lang/rust#67806 | Yuki Okushi | -3/+2 | |
| 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-24 | rustup "Add span information to `ExprKind::Assign`" | Lzu Tao | -1/+1 | |
| 2019-12-04 | Rustup to rust-lang/rust#66878 | Matthias Krüger | -1/+2 | |
| 2019-12-03 | Rustup to rust-lang/rust#66935 | flip1995 | -10/+10 | |
| 2019-11-18 | Rustup to rustc 1.41.0-nightly (a0d40f8bd 2019-11-18) | Manish Goregaokar | -57/+35 | |
| 2019-11-12 | don't warn on CRLF in `with_newline` lints | Andy Russell | -29/+25 | |
| 2019-11-11 | Fix breakage due to rust-lang/rust#65324 | Michael Wright | -1/+1 | |
| 2019-11-09 | Rustup to rustc 1.40.0-nightly (ac162c6ab 2019-11-09) | Manish Goregaokar | -0/+1 | |
| 2019-11-08 | rustup https://github.com/rust-lang/rust/pull/65916 | Lzu Tao | -1/+2 | |
| 2019-09-27 | Rustup to rust-lang/rust#64813 | flip1995 | -3/+3 | |
| 2019-09-03 | Fix occurrences of `too_many_lines` violations | Michael Wright | -0/+1 | |
| 2019-08-16 | Rustup "Remove `Spanned` from `{ast,hir}::FieldPat`" | Lzu Tao | -10/+10 | |
| 2019-08-11 | Fixed repeated word | Vallentin | -1/+1 | |
| 2019-08-03 | Doctests: Enable running doc tests for restriction lints | Philipp Hansch | -0/+1 | |
| 2019-08-03 | Rustup to latest rustc master | Philipp Hansch | -0/+2 | |
| Broken due to: * https://github.com/rust-lang/rust/pull/63180 (`Existential` -> `OpaqueTy`) * https://github.com/rust-lang/rust/pull/63121 (New fields for `FormatSpec`) | ||||
| 2019-06-12 | rustup https://github.com/rust-lang/rust/pull/61758/files | Matthias Krüger | -2/+2 | |
| 2019-05-30 | add suggestions for print/write with newline lint | Andy Russell | -54/+110 | |
| 2019-05-25 | Rustup to https://github.com/rust-lang/rust/pull/61026 | Philipp Hansch | -1/+1 | |
| 2019-05-23 | Rustup to https://github.com/rust-lang/rust/pull/60965 | Philipp Hansch | -4/+4 | |
| 2019-05-17 | Prevent symbocalypse | Oliver Scherer | -8/+6 | |
| 2019-05-14 | Use symbols instead of strings | Oliver Scherer | -6/+9 | |
| 2019-04-17 | Use lint pass macros | Matthew Kraai | -23/+12 | |
| Fixes #3917. | ||||
| 2019-03-12 | Run more doc tests | Philipp Hansch | -7/+19 | |
| This executes some more doc tests that were ignored before. | ||||
| 2019-03-05 | fix or ignore failing doc tests | Andy Russell | -7/+7 | |
| 2019-03-05 | move lint documentation into macro invocations | Andy Russell | -104/+104 | |
| 2019-02-18 | Check {print,write}_with_newline for literal newline | phil | -3/+10 | |
| Both regular strings and raw strings can contain literal newlines. This commit extends the lint to also warn about terminating strings with these. Behaviour handling for raw strings is also moved into `check_newlines` by passing in the `is_raw` boolean from `check_tts` as [suggested](https://github.com/rust-lang/rust-clippy/pull/3781#pullrequestreview-204663732) | ||||
| 2019-02-18 | Don't fail for raw string ending in \n | phil | -15/+31 | |
| Pass tests for #3778, {print,write}_with_newline false positive This change guards the lint from checking newlines with a sort of complicated check to see if it's a raw string. Raw strings shouldn't be newline-checked, since r"\n" is literally \-n, not a newline. I think it's ok not to check for _literal_ newlines at the end of raw strings, but maybe that's debatable. I... don't think this code is that great. I wanted to write the check after `check_tts`, but that was too late -- raw string type info is lost (or I couldn't find it). Putting it inside `check_tts` feels heavy-duty and the check itself feels like a brittle reach possibly into places it shouldn't. Maybe someone can fix this up :) | ||||
| 2019-01-27 | rustup https://github.com/rust-lang/rust/pull/57726 | Matthias Krüger | -0/+4 | |
| 2019-01-20 | Fix breakage due to rust-lang/rust#57755 | Michael Wright | -3/+3 | |
| 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 | Remove crate:: prefixes from crate paths | Konrad Borowski | -7/+7 | |
| This is somewhat misleading, as those are actually external crates, and don't need a crate:: prefix. | ||||
| 2018-12-27 | rustup https://github.com/rust-lang/rust/pull/57069 | Matthias Krüger | -1/+1 | |
| 2018-12-25 | fix a couple of ftrivial typos (NFC). | Matthias Krüger | -1/+1 | |
| 2018-12-11 | Fix write_with_newline escaping false positive | Michael Wright | -8/+28 | |
| Fixes #3514 | ||||
| 2018-11-27 | Run rustfmt on clippy_lints | flip1995 | -7/+10 | |
| 2018-11-27 | Fix dogfood error | flip1995 | -2/+2 | |
| 2018-11-27 | Add applicability level to (nearly) every span_lint_and_sugg function | flip1995 | -6/+11 | |
| 2018-11-27 | Fix bugs and improve documentation | flip1995 | -0/+14 | |
| Some bugs and some documentation is unrelated to the Applicability change, but these bugs were serious and the documentation was kind of required to understand what's going on. | ||||
| 2018-11-27 | Add Applicability::Unspecified to span_lint_and_sugg functions | flip1995 | -2/+5 | |
| 2018-10-08 | Merge pull request #3285 from ↵ | Philipp Hansch | -8/+8 | |
| devonhollowood/pedantic-dogfood-items-after-statements Pedantic dogfood: `items_after_statements` | ||||
| 2018-10-07 | Fix items_after_statements for `const`s | Devon Hollowood | -7/+7 | |
| 2018-10-07 | Fix items_after_statements for `use` statements | Devon Hollowood | -1/+1 | |
| 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 | -6/+6 | |
| 2018-09-07 | Fix #3145 by removing assert | flip1995 | -1/+0 | |
| 2018-09-06 | print_with_newline / write_with_newline: don't warn about string with ↵ | Matthias Krüger | -2/+8 | |
| several `\n`s in them. Fixes #3126 | ||||
| 2018-09-06 | rustfmt clippy_lints/src/write.rs | Matthias Krüger | -28/+24 | |
