about summary refs log tree commit diff
path: root/clippy_lints/src/utils/camel_case.rs
AgeCommit message (Collapse)AuthorLines
2019-10-14new lints around `#[must_use]` fnsAndre 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-03-10Addressed points raised in review.Alexander Regueiro-2/+1
2019-03-10Various cosmetic improvements.Alexander Regueiro-2/+2
2019-01-08Remove all copyright license headersPhilipp Hansch-9/+0
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
2018-11-27Run rustfmt on clippy_lintsflip1995-1/+0
2018-10-11Fix `stutter` lintsDevon Hollowood-19/+19
2018-10-06Add license header to Rust filesManish Goregaokar-0/+10
2018-08-28Make clippy_lints::{utils,consts} modules private, remove unused items.Corey Farwell-0/+114