| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 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 | 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-27 | Rustup to rust-lang/rust#66936 | Yuki Okushi | -4/+4 | |
| 2019-12-24 | rustup "Add span information to `ExprKind::Assign`" | Lzu Tao | -2/+2 | |
| 2019-12-05 | Change to only detect in external macros. | daxpedda | -5/+3 | |
| 2019-12-04 | Fix false positive in `string_add`. | daxpedda | -1/+7 | |
| 2019-12-04 | Rustup to rust-lang/rust#66878 | Matthias Krüger | -1/+2 | |
| 2019-11-26 | trigger string_lit_as_bytes when literal has escapes | Andy Russell | -46/+41 | |
| 2019-11-19 | use usize::from | lzutao | -1/+1 | |
| Co-Authored-By: Mateusz Mikuła <mati865@users.noreply.github.com> | ||||
| 2019-11-19 | use more efficient code to generate repeated string | Lzu Tao | -1/+1 | |
| see https://rust.godbolt.org/z/z9vrFP for comparison | ||||
| 2019-09-27 | Rustup to rust-lang/rust#64813 | flip1995 | -6/+6 | |
| 2019-08-19 | Remove in_macro_or_desugar | KRAAI, MATTHEW [VISUS] | -2/+2 | |
| 2019-08-03 | Doctests: Enable running doc tests for restriction lints | Philipp Hansch | -1/+1 | |
| 2019-07-08 | Extract semantic constant | Thiago Arrais | -1/+4 | |
| 2019-07-08 | Avoid reporting string_lit_as_bytes for long strings | Jens Hausdorf | -0/+1 | |
| Port of @jens1o code ([b76f939][jens1o_commit]) Fixes #1208 [jens1o_commit]: https://github.com/jens1o/rust-clippy/commit/b76f939ac2efcfe24900c286b3b7713d972d9088 Co-authored-by: Thiago Arrais <thiago.arrais@gmail.com> | ||||
| 2019-05-17 | Prevent symbocalypse | Oliver Scherer | -3/+2 | |
| 2019-05-14 | Rustfmt all the things | Oliver Scherer | -1/+1 | |
| 2019-05-14 | Use symbols instead of strings | Oliver Scherer | -2/+3 | |
| 2019-05-11 | Rename in_macro to in_macro_or_desugar | Manish Goregaokar | -2/+2 | |
| 2019-04-17 | Use lint pass macros | Matthew Kraai | -25/+3 | |
| Fixes #3917. | ||||
| 2019-03-10 | Various cosmetic improvements. | Alexander Regueiro | -4/+5 | |
| 2019-03-05 | move lint documentation into macro invocations | Andy Russell | -48/+48 | |
| 2019-02-24 | HirIdify some lints | ljedrz | -1/+1 | |
| 2019-01-27 | rustup https://github.com/rust-lang/rust/pull/57726 | Matthias Krüger | -0/+8 | |
| 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 | -6/+6 | |
| This is somewhat misleading, as those are actually external crates, and don't need a crate:: prefix. | ||||
| 2018-11-27 | Add applicability level to (nearly) every span_lint_and_sugg function | flip1995 | -5/+13 | |
| 2018-11-27 | Add Applicability::Unspecified to span_lint_and_sugg functions | flip1995 | -0/+3 | |
| 2018-10-26 | fix: correctly reconstruct raw strings | Jane Lusby | -4/+8 | |
| 2018-10-26 | fix: extra semicolon, only create callsite once | Jane Lusby | -1/+1 | |
| 2018-10-26 | Fix string_lit_as_bytes lint for macros | Jane Lusby | -8/+31 | |
| Prior to this change, string_lit_as_bytes would trigger for constructs like `include_str!("filename").as_bytes()` and would recommend fixing it by rewriting as `binclude_str!("filename")`. This change updates the lint to act as an EarlyLintPass lint. It then differentiates between string literals and macros that have bytes yielding alternatives. Closes #3205 | ||||
| 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-09-01 | Merge pull request #2977 from flip1995/tool_lints | Manish Goregaokar | -1/+1 | |
| Implement tool_lints | ||||
| 2018-08-29 | Merge pull request #3076 from mbrubeck/patch-1 | Philipp Hansch | -2/+1 | |
| Remove incorrect note from string_add_assign docs | ||||
| 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-23 | Remove incorrect note from string_add_assign docs | Matt Brubeck | -2/+1 | |
| The docs claim that `String::push_str` is better than `String::add` because `String::add` allocates a new string and drops the old one, but this is not true. In fact, `add` reuses the existing string and grows it only if its capacity is exceeded, exactly like `push_str`. Their performance is identical since `add` is just a wrapper for `push_str`: ``` fn add(mut self, other: &str) -> String { self.push_str(other); self } ``` https://github.com/rust-lang/rust/blob/35bf1ae25799a4e62131159f052e0a3cbd27c960/src/liballoc/string.rs#L1922-L1925 | ||||
| 2018-08-19 | codemap -> source_map | Manish Goregaokar | -1/+1 | |
| https://github.com/rust-lang/rust/pull/52953 | ||||
| 2018-07-23 | Rustup | Oliver Schneider | -2/+2 | |
| 2018-07-19 | Remove import of rustc | Manish Goregaokar | -0/+1 | |
| 2018-07-16 | BinOpKind | csmoe | -2/+2 | |
| 2018-07-16 | ExprKind | csmoe | -7/+7 | |
| 2018-06-29 | Rustup | Mateusz Mikuła | -1/+1 | |
| 2018-05-30 | Run rustfix | Mateusz Mikuła | -3/+3 | |
| 2018-05-17 | Rustup to 2018-05-16 | Mateusz Mikuła | -1/+1 | |
| 2018-03-28 | Categorize all the lints! | Oliver Schneider | -7/+8 | |
| 2017-11-06 | Fix broken tests. | laurent | -1/+0 | |
