| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2023-12-01 | Merge commit 'f0cdee4a3f094416189261481eae374b76792af1' into clippy-subtree-sync | Philipp Krones | -1/+1 | |
| 2023-11-02 | Merge commit '09ac14c901abc43bd0d617ae4a44e8a4fed98d9c' into clippyup | Philipp Krones | -19/+26 | |
| 2023-10-06 | Merge commit 'b105fb4c39bc1a010807a6c076193cef8d93c109' into clippyup | Philipp Krones | -30/+112 | |
| 2023-09-25 | Merge commit '7671c283a50b5d1168841f3014b14000f01dd204' into clippyup | Philipp Krones | -5/+5 | |
| 2023-07-17 | Merge commit 'd9c24d1b1ee61f276e550b967409c9f155eac4e3' into clippyup | Philipp Krones | -6/+16 | |
| 2023-04-23 | Merge commit 'a3ed905928a03b6e433d0b429190bf3a847128b3' into clippyup | Philipp Krones | -1/+1 | |
| 2023-04-11 | Merge commit '83e42a2337dadac915c956d125f1d69132f36425' into clippyup | Philipp Krones | -4/+10 | |
| 2023-03-10 | Merge commit '3c06e0b1ce003912f8fe0536d3a7fe22558e38cf' into clippyup | Philipp Krones | -63/+85 | |
| 2022-12-29 | Merge commit '4f3ab69ea0a0908260944443c739426cc384ae1a' into clippyup | Philipp Krones | -2/+2 | |
| 2022-11-21 | Merge commit 'f4850f7292efa33759b4f7f9b7621268979e9914' into clippyup | Philipp Krones | -2/+15 | |
| 2022-10-06 | Merge commit 'ac0e10aa68325235069a842f47499852b2dee79e' into clippyup | Philipp Krones | -12/+5 | |
| 2022-09-21 | Merge commit '7248d06384c6a90de58c04c1f46be88821278d8b' into sync-from-clippy | David Koloski | -533/+254 | |
| 2022-09-09 | Merge commit 'b52fb5234cd7c11ecfae51897a6f7fa52e8777fc' into clippyup | Philipp Krones | -1/+5 | |
| 2022-08-31 | Use `CountIsStart` in clippy | Jason Newcomb | -2/+2 | |
| 2022-08-31 | Merge commit 'f51aade56f93175dde89177a92e3669ebd8e7592' into clippyup | Jason Newcomb | -6/+123 | |
| 2022-08-16 | Rename some things related to literals. | Nicholas Nethercote | -5/+5 | |
| - Rename `ast::Lit::token` as `ast::Lit::token_lit`, because its type is `token::Lit`, which is not a token. (This has been confusing me for a long time.) reasonable because we have an `ast::token::Lit` inside an `ast::Lit`. - Rename `LitKind::{from,to}_lit_token` as `LitKind::{from,to}_token_lit`, to match the above change and `token::Lit`. | ||||
| 2022-07-31 | Always include a position span in rustc_parse_format::Argument | Alex Macleod | -2/+2 | |
| 2022-07-25 | Generate correct suggestion with named arguments used positionally | Preston From | -1/+1 | |
| Address issue #99265 by checking each positionally used argument to see if the argument is named and adding a lint to use the name instead. This way, when named arguments are used positionally in a different order than their argument order, the suggested lint is correct. For example: ``` println!("{b} {}", a=1, b=2); ``` This will now generate the suggestion: ``` println!("{b} {a}", a=1, b=2); ``` Additionally, this check now also correctly replaces or inserts only where the positional argument is (or would be if implicit). Also, width and precision are replaced with their argument names when they exists. Since the issues were so closely related, this fix for issue #99265 also fixes issue #99266. Fixes #99265 Fixes #99266 | ||||
| 2022-07-18 | Merge commit 'fdb84cbfd25908df5683f8f62388f663d9260e39' into clippyup | Philipp Krones | -1/+1 | |
| 2022-06-16 | Merge commit 'd7b5cbf065b88830ca519adcb73fad4c0d24b1c7' into clippyup | flip1995 | -8/+19 | |
| 2022-05-21 | Merge 'rust-clippy/master' into clippyup | xFrednet | -3/+0 | |
| 2022-05-03 | Make rustc_parse_format compile on stable | bjorn3 | -2/+3 | |
| This allows it to be used by lightweight formatting systems and may allow it to be used by rust-analyzer. | ||||
| 2022-03-24 | Merge commit 'd0cf3481a84e3aa68c2f185c460e282af36ebc42' into clippyup | flip1995 | -2/+7 | |
| 2022-03-14 | Merge commit 'dc5423ad448877e33cca28db2f1445c9c4473c75' into clippyup | flip1995 | -3/+3 | |
| 2022-02-23 | rustc_errors: take `self` by value in `DiagnosticBuilder::cancel`. | Eduard-Mihai Burtescu | -2/+2 | |
| 2022-02-16 | Correctly mark the span of captured arguments in `format_args!()` | Chayim Refael Friedman | -1/+1 | |
| It should only include the identifier, or misspelling suggestions will be wrong. | ||||
| 2022-01-23 | Update clippy | Vadim Petrochenkov | -3/+3 | |
| 2021-12-15 | Remove unnecessary sigils around `Symbol::as_str()` calls. | Nicholas Nethercote | -5/+5 | |
| 2021-12-06 | Merge commit 'a5d597637dcb78dc73f93561ce474f23d4177c35' into clippyup | flip1995 | -4/+25 | |
| 2021-11-07 | ast: Fix naming conventions in AST structures | Vadim Petrochenkov | -2/+2 | |
| TraitKind -> Trait TyAliasKind -> TyAlias ImplKind -> Impl FnKind -> Fn All `*Kind`s in AST are supposed to be enums. Tuple structs are converted to braced structs for the types above, and fields are reordered in syntactic order. Also, mutable AST visitor now correctly visit spans in defaultness, unsafety, impl polarity and constness. | ||||
| 2021-08-21 | cleanup: `Span::new` -> `Span::with_lo` | Vadim Petrochenkov | -1/+1 | |
| 2021-07-29 | Merge commit '0cce3f643bfcbb92d5a1bb71858c9cbaff749d6b' into clippyup | flip1995 | -39/+53 | |
| 2021-06-03 | Merge commit '3ae8faff4d46ad92f194c2a4b941c3152a701b31' into clippyup | flip1995 | -1/+1 | |
| 2021-05-20 | Merge commit '9e3cd88718cd1912a515d26dbd9c4019fd5a9577' into clippyup | flip1995 | -9/+14 | |
| 2021-04-22 | Merge commit '98e2b9f25b6db4b2680a3d388456d9f95cb28344' into clippyup | flip1995 | -1/+1 | |
| 2021-03-25 | Merge commit '0e87918536b9833bbc6c683d1f9d51ee2bf03ef1' into clippyup | flip1995 | -118/+197 | |
| 2021-02-25 | Merge commit '928e72dd10749875cbd412f74bfbfd7765dbcd8a' into clippyup | flip1995 | -3/+0 | |
| 2021-02-02 | Merge commit '3e4179766bcecd712824da04356621b8df012ea4' into sync-from-clippy | Manish Goregaokar | -1/+5 | |
| 2021-02-01 | Box the biggest ast::ItemKind variants | Dániel Buga | -17/+33 | |
| 2021-01-30 | Merge commit '95c0459217d1661edfa794c8bb122452b92fb485' into clippyup | flip1995 | -4/+8 | |
| 2021-01-15 | Merge commit '953f024793dab92745fee9cd2c4dee6a60451771' into clippyup | flip1995 | -3/+4 | |
| 2020-12-20 | Merge commit '4911ab124c481430672a3833b37075e6435ec34d' into clippyup | flip1995 | -37/+70 | |
| 2020-11-05 | Merge commit 'b20d4c155d2fe3a8391f86dcf9a8c49e17188703' into clippyup | flip1995 | -3/+2 | |
| 2020-10-09 | Merge commit '2f6439ae6a6803d030cceb3ee14c9150e91b328b' into clippyup | flip1995 | -2/+15 | |
| 2020-09-24 | Merge commit 'e636b88aa180e8cab9e28802aac90adbc984234d' into clippyup | flip1995 | -1/+5 | |
| 2020-08-28 | Merge commit '3d0b0e66afdfaa519d8855b338b35b4605775945' into clippyup | flip1995 | -18/+13 | |
| 2020-07-14 | Merge commit '2ca58e7dda4a9eb142599638c59dc04d15961175' into clippyup | flip1995 | -6/+24 | |
| 2020-06-06 | Auto merge of #72927 - petrochenkov:rustc, r=Mark-Simulacrum | bors | -1/+1 | |
| Rename all remaining compiler crates to use the `rustc_foo` pattern libarena -> librustc_arena libfmt_macros -> librustc_parse_format libgraphviz -> librustc_graphviz libserialize -> librustc_serialize Closes https://github.com/rust-lang/rust/issues/71177 in particular. | ||||
| 2020-06-03 | Bump to 1.46 | Mark Rousskov | -4/+4 | |
| 2020-06-02 | Rename the crates in source code | Vadim Petrochenkov | -1/+1 | |
