| 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-09 | Rustup to rust-lang/rust#67979 | Yuki Okushi | -1/+1 | |
| 2020-01-07 | Normalize lint messages | Yuki Okushi | -6/+6 | |
| 2020-01-07 | Rustup to rust-lang/rust#67886 | Yuki Okushi | -3/+3 | |
| 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 | -2/+2 | |
| 2019-12-27 | Rustup to rust-lang/rust#66936 | Yuki Okushi | -11/+11 | |
| 2019-12-24 | rustup "Add span information to `ExprKind::Assign`" | Lzu Tao | -1/+3 | |
| 2019-12-22 | Add <'_> where necessary | flip1995 | -1/+1 | |
| 2019-12-21 | rustup "Merge `ast::Mutability` and `mir::Mutability`" | Lzu Tao | -2/+2 | |
| 2019-12-17 | Prevent `cmp_nan` when inside constants | Krishna Veera Reddy | -16/+20 | |
| `std::{f32,f64}::is_nan` isn't a const fn so prevent `cmp_nan` lint from running within constant comparisons. | ||||
| 2019-12-17 | Detect comparisons with NAN constants | Krishna Veera Reddy | -17/+17 | |
| Currently `cmp_nan` lint doesn't detect comparisons with NaN's if the operands are consts variables so to fix this we evaluate the const variables first before testing for NaN. | ||||
| 2019-12-04 | Rustup to rust-lang/rust#66878 | Matthias Krüger | -1/+2 | |
| 2019-11-11 | MutImmutable -> Immutable, MutMutable -> Mutable, CaptureClause -> CaptureBy | Manish Goregaokar | -2/+2 | |
| 2019-10-28 | rustup https://github.com/rust-lang/rust/pull/65792/ | Matthias Krüger | -1/+1 | |
| 2019-10-17 | syntax::ext -> syntax_expand | Manish Goregaokar | -1/+1 | |
| 2019-10-02 | Add suggestion for zero-ptr lint | Lzu Tao | -9/+17 | |
| 2019-09-27 | Rustup to rust-lang/rust#64813 | flip1995 | -17/+17 | |
| 2019-09-26 | Rustup https://github.com/rust-lang/rust/pull/64513 | Lzu Tao | -1/+1 | |
| 2019-09-26 | Fix macro expansion in toplevel_ref_arg lint | Lzu Tao | -15/+20 | |
| 2019-09-10 | New `is_integer_const` to check more const ints | Andre Bogus | -2/+2 | |
| This mostly affects loop checks and the modulo_one lint. Tests were also updated where applicable. | ||||
| 2019-09-05 | Fix `redundant_pattern` false positive | Yuki Okushi | -39/+0 | |
| 2019-08-28 | Change float_cmp Applicability to `HasPlaceholders` | Philipp Hansch | -1/+1 | |
| The suggestion includes an 'errors' placeholder currently, so it's not `MachineApplicable` | ||||
| 2019-08-22 | Add example to a perf lint | BO41 | -0/+6 | |
| 2019-08-19 | Restore en dashes | KRAAI, MATTHEW [VISUS] | -2/+2 | |
| 2019-08-19 | Remove in_macro_or_desugar | KRAAI, MATTHEW [VISUS] | -5/+5 | |
| 2019-08-16 | Use outer_expn_data instead of outer_expn_info | KRAAI, MATTHEW [VISUS] | -3/+7 | |
| 2019-08-03 | Doctests: Enable running doc tests for restriction lints | Philipp Hansch | -2/+3 | |
| 2019-08-03 | Auto merge of #4327 - phansch:doctests_perf, r=flip1995 | bors | -1/+3 | |
| Doctests: Enable running doc tests for perf lints changelog: none This should be possible to merge independently of #4325 cc #4319 | ||||
| 2019-08-03 | Doctests: Enable running doc tests for perf lints | Philipp Hansch | -1/+3 | |
| This should be possible to merge independently of #4325 cc #4319 | ||||
| 2019-08-02 | Doctests: Fix all complexity lint docs | Philipp Hansch | -1/+1 | |
| cc #4319 | ||||
| 2019-07-15 | Lint | Jerry Hardee | -4/+2 | |
| 2019-07-15 | Fix float_cmp false positive when comparing signum | Jerry Hardee | -0/+27 | |
| f1.signum() == f2.signum() f1.signum() != f2.signum() should not trigger a warning. | ||||
| 2019-07-12 | Rustup `macro expansion and resolution` | Lzu Tao | -5/+9 | |
| 2019-06-18 | rustup https://github.com/rust-lang/rust/pull/61836/ | Matthias Krüger | -1/+1 | |
| 2019-06-17 | fix suggestion for floating points inequality | Daniele D'Orazio | -1/+5 | |
| It should be of the form `(a - b).abs() > error` whereas it was `(a - b).abs() < error` that is instead what should be used for equality. | ||||
| 2019-06-02 | Rustup for https://github.com/rust-lang/rust/pull/61276 | Mateusz Mikuła | -3/+4 | |
| 2019-06-01 | Make use of new `outer_expn_info()` function | Lzu Tao | -2/+1 | |
| 2019-05-18 | Dogfood and rustfmt | Oliver Scherer | -2/+1 | |
| 2019-05-17 | Prevent symbocalypse | Oliver Scherer | -4/+3 | |
| 2019-05-14 | Rustfmt all the things | Oliver Scherer | -1/+2 | |
| 2019-05-14 | Use symbols instead of strings | Oliver Scherer | -3/+4 | |
| 2019-05-11 | Rename in_macro to in_macro_or_desugar | Manish Goregaokar | -3/+3 | |
| 2019-05-03 | Rustup to rustc 1.36.0-nightly (13fde05b1 2019-05-03) | Matthias Krüger | -5/+5 | |
| 2019-04-19 | Allow allowing of toplevel_ref_arg lint | Philipp Hansch | -6/+7 | |
| I'm not sure why some lints need the `HirId` to be able to recognize the lint level attributes, but this commit makes the lint level attributes work for `toplevel_ref_arg`. | ||||
| 2019-04-17 | Use lint pass macros | Matthew Kraai | -26/+15 | |
| Fixes #3917. | ||||
| 2019-04-14 | Use _from_hir_id APIs | Manish Goregaokar | -1/+1 | |
| 2019-03-12 | Run more doc tests | Philipp Hansch | -10/+18 | |
| This executes some more doc tests that were ignored before. | ||||
