| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2020-01-25 | add size parameter for lint | Mikhail Babenko | -0/+2 | |
| 2020-01-04 | Rustup to https://github.com/rust-lang/rust/pull/67853 | Philipp Hansch | -1/+2 | |
| Specifically caused by https://github.com/rust-lang/rust/pull/67786 | ||||
| 2019-12-24 | do minor cleanups | Lzu Tao | -2/+0 | |
| * ToString and AsRef are in prelude, no need to import them | ||||
| 2019-11-13 | Add new lint: large stack array | Areredify | -0/+2 | |
| added documentation minor style fix change as to ::from add ignore to doc include threshold in lint message/make suggestion more apparent/use Scalar api instead of matching style fix shange snippet_opt to snippet | ||||
| 2019-10-14 | new lints around `#[must_use]` fns | Andre Bogus | -0/+2 | |
| `must_use_unit` lints unit-returning functions with a `#[must_use]` attribute, suggesting to remove it. `double_must_use` lints functions with a plain `#[must_use]` attribute, but which return a type which is already `#[must_use]`, so the attribute has no benefit. `must_use_candidate` is a pedantic lint that lints functions and methods that return some non-unit type that is not already `#[must_use]` and suggests to add the annotation. | ||||
| 2019-09-27 | Rustup to rust-lang/rust#64813 | flip1995 | -2/+2 | |
| 2019-07-31 | Update all the code to pass the updated `use_self` lint. | Jakub Wieczorek | -3/+3 | |
| One struct required a temporary `#[allow(dead_code)]` annotation due to a bug in the Rust compiler: https://github.com/rust-lang/rust/issues/63151. | ||||
| 2019-05-17 | Prevent symbocalypse | Oliver Scherer | -2/+1 | |
| 2019-05-14 | Rustfmt all the things | Oliver Scherer | -1/+1 | |
| 2019-05-14 | Use symbols instead of strings | Oliver Scherer | -1/+2 | |
| 2019-05-09 | use `derive` feature over `serde_derive` crate | Andy Russell | -1/+1 | |
| 2019-03-18 | Cargo fmt | Mateusz Mikuła | -3/+1 | |
| 2019-03-18 | name -> check_name | Mateusz Mikuła | -1/+1 | |
| 2019-03-18 | NestedMetaItemKind -> NestedMetaItem | Mateusz Mikuła | -2/+2 | |
| 2019-03-10 | Various cosmetic improvements. | Alexander Regueiro | -1/+1 | |
| 2019-03-06 | Renamed: Cyclomatic Complexity -> Cognitive Complexity | Félix Fischer | -6/+19 | |
| * Ran automatic naming update * Formalized rename of `cyclomatic_complexity` to `cognitive_complexity` ** Added the rename to `lib.rs` ** Added rename test * Added warning for deprecated key `cyclomatic_complexity_threshold` and tests for it * Added deprecation status for Clippy's builtin attribute * Updated tests for new builtin attribute renaming | ||||
| 2019-02-10 | removing redundant closures in the whole project | Grzegorz | -1/+1 | |
| 2019-02-02 | Let CLIPPY_CONF_DIR be used to start search for config, and fall back to | Jeremy Fitzhardinge | -2/+7 | |
| CARGO_MANIFEST_DIR if it isn't set. If CARGO_MANIFEST_DIR isn't set, fall back "." rather than panicing. Issue #3663 | ||||
| 2019-02-01 | Adding back tests, but also reducing threshold by 1 | Unknown | -1/+1 | |
| 2019-02-01 | Adding lint for too many lines. | Araam Borhanian | -0/+2 | |
| 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 | -1/+1 | |
| This is somewhat misleading, as those are actually external crates, and don't need a crate:: prefix. | ||||
| 2018-12-11 | Add 'CamelCase' to doc_valid_idents | Philipp Hansch | -0/+1 | |
| 2018-12-07 | typo: emum → enum | Philipp A | -1/+1 | |
| 2018-11-27 | Run rustfmt on clippy_lints | flip1995 | -24/+16 | |
| 2018-10-06 | Add license header to Rust files | Manish Goregaokar | -0/+10 | |
| 2018-09-26 | fix all clippy::use_self pedantic warnings found in the codebase. | Matthias Krüger | -1/+1 | |
| cc #3172 | ||||
| 2018-09-15 | Reintroduce `extern crate` for non-Cargo dependencies. | Eduard-Mihai Burtescu | -1/+1 | |
| 2018-09-04 | Make `Default` do what `default` used to do | Nick Cameron | -2/+9 | |
| 2018-09-03 | Make `Conf::default` available | Nick Cameron | -1/+1 | |
| Fixes RLS | ||||
| 2018-09-01 | Merge pull request #2977 from flip1995/tool_lints | Manish Goregaokar | -1/+1 | |
| Implement tool_lints | ||||
| 2018-08-29 | Adapt codebase to the tool_lints | flip1995 | -1/+1 | |
| 2018-08-28 | Make clippy_lints::{utils,consts} modules private, remove unused items. | Corey Farwell | -15/+0 | |
| 2018-08-19 | codemap -> source_map | Manish Goregaokar | -3/+3 | |
| https://github.com/rust-lang/rust/pull/52953 | ||||
| 2018-08-06 | Remove #[allow(rust_2018_idioms)] workaround | Dale Wijnand | -9/+0 | |
| 2018-07-23 | Rustup | Oliver Schneider | -1/+1 | |
| 2018-07-19 | Remove import of lazy_static | Manish Goregaokar | -0/+2 | |
| 2018-07-19 | Remove import of serde | Manish Goregaokar | -3/+2 | |
| 2018-06-25 | Enable rust_2018_idioms warning | Mateusz Mikuła | -1/+10 | |
| 2018-06-15 | Allow configuring the trivial copy size limit | Wim Looman | -0/+2 | |
| 2018-05-30 | Merge pull request #2821 from mati865/rust-2018-migration | Oliver Schneider | -2/+2 | |
| Rust 2018 migration | ||||
| 2018-05-30 | Run rustfix | Mateusz Mikuła | -2/+2 | |
| 2018-05-29 | Remove unused define_conf-macro definitions | flip1995 | -23/+0 | |
| 2018-05-03 | Fixed build for latest nightly (again) | Alexander Regueiro | -1/+1 | |
| 2018-04-07 | Fix compilation for nightly 2018-04-06 | Michael Wright | -1/+1 | |
| Breakages for introduced by rust pull request 'AST: Give spans to all identifies' - rust-lang/rust/pull#49154 Closes #2639 | ||||
| 2018-03-27 | Version bump | Oliver Schneider | -1/+1 | |
| 2018-02-06 | Make decimal_literal_representation a restriction lint | flip1995 | -1/+1 | |
| 2018-01-23 | Apply requested changes | flip1995 | -1/+1 | |
| 2018-01-23 | Add configurable threshold, default: 4096 | flip1995 | -0/+2 | |
| 2018-01-02 | Add "NaNs" and "GitLab" to `doc-valid-idents` | Trevor Spiteri | -2/+2 | |
