| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2019-03-12 | Remove some unused features and `error-pattern`s | Philipp Hansch | -1/+0 | |
| 2019-03-10 | Various cosmetic improvements. | Alexander Regueiro | -1/+1 | |
| 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-19 | Link to `rustc_driver` crate in plugin | Alex Crichton | -0/+2 | |
| This is in anticipation for rust-lang/rust#56987 where the `rustc_driver` crate being linked in will be required to link correctly against the compiler. In the meantime it should be harmless otherwise! | ||||
| 2018-11-27 | Run rustfmt on src | flip1995 | -2/+0 | |
| 2018-10-11 | Remove now-useless `allow(unknown_lints)` | Oliver Scherer | -1/+0 | |
| 2018-10-11 | Stabilize tool lints | Oliver Scherer | -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 | -1/+5 | |
| 2018-08-29 | Adapt codebase to the tool_lints | flip1995 | -1/+2 | |
| 2018-08-23 | remove macro_vis_matcher feature gate since it is stable now. | Matthias Krüger | -1/+0 | |
| Warning was: warning: the feature `macro_vis_matcher` has been stable since 1.29.0 and no longer requires an attribute to enable --> src/lib.rs:4:12 | 4 | #![feature(macro_vis_matcher)] | ^^^^^^^^^^^^^^^^^ | = note: #[warn(stable_features)] on by default | ||||
| 2018-08-19 | Remove implied rust_2018 feature | Manish Goregaokar | -1/+0 | |
| We are already on the edition and this feature is implied. | ||||
| 2018-08-15 | Fix #2927 | Michael Wright | -1/+2 | |
| 2018-07-23 | Rustup | Oliver Schneider | -1/+1 | |
| 2018-06-25 | Enable rust_2018_idioms warning | Mateusz Mikuła | -3/+1 | |
| 2018-05-30 | Add rust_2018_preview feature and fix rustfmt annotation | Mateusz Mikuła | -0/+1 | |
| 2018-05-22 | Format code | Mateusz Mikuła | -1/+3 | |
| 2018-05-11 | Remove all mention and testing of #[plugin(clippy)] and warn if used | Oliver Schneider | -3/+4 | |
| 2018-04-18 | Fix latest nightly breakage | Philipp Hansch | -2/+2 | |
| I'm not sure if there are better ways to use the RwLock API, though. But it seems to work. | ||||
| 2017-10-31 | Update clippy for rustc 1.23.0-nightly (f0fe716db 2017-10-30) | Manish Goregaokar | -0/+1 | |
| 2017-08-14 | Handfix dogfood issues with the rustfmt changes | Oliver Schneider | -8/+7 | |
| 2017-04-12 | Run rustfmt | Oliver Schneider | -2/+7 | |
| 2016-12-19 | Fix a couple warnings | mcarton | -5/+7 | |
| 2016-09-19 | Merge remote-tracking branch 'origin/master' into examples | Oliver Schneider | -0/+1 | |
| 2016-08-23 | Add a `MISSING_DOCS_IN_PRIVATE_ITEMS` lint | mcarton | -0/+1 | |
| 2016-08-17 | fallout | Oliver Schneider | -4/+2 | |
| 2016-08-17 | plugin mode still needs to work | Oliver Schneider | -1/+2 | |
| 2016-08-17 | running cargo clippy on a crate that has the clippy plugin enabled errors ↵ | Oliver Schneider | -1/+5 | |
| out due to duplicate lints | ||||
| 2016-06-10 | Cleanup dependencies and features | mcarton | -43/+3 | |
| 2016-05-27 | split clippy into lints, plugin and cargo-clippy | Oliver Schneider | -515/+12 | |
| 2016-05-24 | Split `new_without_default` and `new_without_default_derive`. | Andre Bogus | -0/+1 | |
| This is still very slow, because we do a trait lookup for each field. Perhaps storing the visited types in a set to reuse types would improve performance somewhat. Also we may want to pre-decide some known types (e.g. `Vec<T>`, `Option<T>`). | ||||
| 2016-05-23 | Let cargo-clippy exit with a code > 0 if some error occured | Benoît Zugmeyer | -2/+12 | |
| 2016-05-23 | Rustup to *1.10.0-nightly (9c6904ca1 2016-05-18)* | mcarton | -1/+1 | |
| 2016-05-16 | Don't panic if cargo rustc fails | Manish Goregaokar | -4/+2 | |
| 2016-05-16 | Allow invalid upcast comparisons | Manish Goregaokar | -1/+1 | |
| 2016-05-13 | add a companion lint to `no_effect` with suggestions for partially effective ↵ | Oliver Schneider | -0/+1 | |
| statements | ||||
| 2016-05-11 | Merge pull request #913 from oli-obk/assign_ops | llogiq | -1/+4 | |
| suggest `a op= b` over `a = a op b` | ||||
| 2016-05-11 | Use rustc --print sysroot, bump to v66 | Manish Goregaokar | -3/+9 | |
| 2016-05-11 | suggest `a op= b` over `a = a op b` | Oliver Schneider | -1/+4 | |
| 2016-05-10 | Support either rustup or multirust environment variables | Josh Stone | -2/+7 | |
| Fixes #910 | ||||
| 2016-05-09 | `cargo clippy` subcommand | Oliver Schneider | -5/+139 | |
| 2016-05-09 | needless borrows found in clippy | Oliver Schneider | -1/+1 | |
| 2016-05-09 | add needless_borrow lint | Oliver Schneider | -0/+3 | |
| 2016-05-02 | Merge branch 'pr-890' | Manish Goregaokar | -1/+1 | |
| 2016-04-30 | fixed tests, added clippy_restrictions lint group | Andre Bogus | -1/+10 | |
| 2016-04-30 | fix #887: New lints for integer/floating-point arithmetic | Andre Bogus | -0/+5 | |
| 2016-04-23 | allow items_after_statements by default | Andre Bogus | -1/+1 | |
| 2016-04-20 | Ran update_lints and updated CHANGELOG.md to reflect addition of mem_forget | Taylor Cramer | -1/+1 | |
| 2016-04-20 | Added lint for mem_forget | Taylor Cramer | -0/+3 | |
| 2016-04-19 | Ran update_lints script | Taylor Cramer | -2/+2 | |
