about summary refs log tree commit diff
path: root/clippy_lints/src/bit_mask.rs
AgeCommit message (Collapse)AuthorLines
2020-01-13Rustup to rust-lang/rust#68045Yuki Okushi-1/+1
2020-01-11Rustup to rust-lang/rust#67806Yuki Okushi-3/+2
2020-01-07Rustup to rust-lang/rust#67886Yuki Okushi-1/+1
2020-01-04Rustup to https://github.com/rust-lang/rust/pull/67853Philipp Hansch-1/+1
Specifically caused by https://github.com/rust-lang/rust/pull/67786
2019-12-27Rustup to rust-lang/rust#66936Yuki Okushi-3/+3
2019-12-04Rustup to rust-lang/rust#66878Matthias Krüger-1/+2
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-09-27Rustup to rust-lang/rust#64813flip1995-6/+6
2019-04-17Use lint pass macrosMatthew Kraai-9/+2
Fixes #3917.
2019-03-12Run more doc testsPhilipp Hansch-6/+9
This executes some more doc tests that were ignored before.
2019-03-10Various cosmetic improvements.Alexander Regueiro-1/+1
2019-03-05fix or ignore failing doc testsAndy Russell-3/+3
2019-03-05move lint documentation into macro invocationsAndy Russell-64/+64
2019-02-01Adding lint for too many lines.Araam Borhanian-0/+1
2019-01-27rustup https://github.com/rust-lang/rust/pull/57907/Matthias Krüger-1/+1
for file in `fd \.rs$` ; do sed -i s/span_suggestion_with_applicability/span_suggestion/g $file ; done for file in `fd \.rs$` ; do sed -i s/span_suggestion_short_with_applicability/span_suggestion_short/g $file ; done for file in `fd \.rs$` ; do sed -i s/span_suggestions_with_applicability/span_suggestions/g $file ; done
2019-01-27rustup https://github.com/rust-lang/rust/pull/57726Matthias Krüger-0/+3
2019-01-08Remove all copyright license headersPhilipp Hansch-9/+0
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
2018-12-30Auto merge of #3597 - xfix:match-ergonomics, r=phanschbors-6/+6
Match ergonomics (lints from A to B)
2018-12-29Use match ergonomics for bit_mask lintKonrad Borowski-6/+6
2018-12-29Remove crate:: prefixes from crate pathsKonrad Borowski-6/+6
This is somewhat misleading, as those are actually external crates, and don't need a crate:: prefix.
2018-11-27Run rustfmt on clippy_lintsflip1995-84/+91
2018-10-06Add license header to Rust filesManish Goregaokar-0/+10
2018-09-20Fill in Applicability from review comments by @flip1995Vitaly _Vi Shukela-1/+1
2018-09-20Fix indentsVitaly _Vi Shukela-1/+1
2018-09-20Use span_suggestion_with_applicability instead of span_suggestionVitaly _Vi Shukela-1/+7
2018-09-15Reintroduce `extern crate` for non-Cargo dependencies.Eduard-Mihai Burtescu-5/+5
2018-08-29Switch to declare_tool_lint macroflip1995-1/+1
2018-08-28Update imports and rustupOliver Schneider-1/+1
2018-08-19codemap -> source_mapManish Goregaokar-1/+1
https://github.com/rust-lang/rust/pull/52953
2018-07-23RustupOliver Schneider-5/+5
2018-07-20Remove import of if_chainManish Goregaokar-0/+1
2018-07-19Remove import of rustcManish Goregaokar-0/+1
2018-07-16BinOpKindcsmoe-24/+24
2018-07-16ExprKindcsmoe-6/+6
2018-06-15Dogfood new trivially_copy_pass_by_ref lintWim Looman-17/+17
2018-05-30Run rustfixMateusz Mikuła-3/+3
2018-05-17Fix ICE for issue 2594Philipp Hansch-1/+1
2018-03-28Categorize all the lints!Oliver Schneider-6/+6
2018-03-16Apply clippy suggestionsMateusz Mikuła-1/+1
Signed-off-by: Mateusz Mikuła <mati865@gmail.com>
2018-03-13Update to rustc masterOliver Schneider-27/+3
2017-10-23mechanically swap if_let_chain -> if_chainAlex Burka-21/+22
2017-09-25Configuration option for VERBOSE_BIT_MASK thresholdYury Krivopalov-1/+12
By default is 1. u64, because I didn't figure out how to deserialize u128 option from config.
2017-09-18Rust upgrade to rustc 1.22.0-nightly (0701b37d9 2017-09-18)Manish Goregaokar-1/+1
2017-09-09Update for latest RustAaron Hill-1/+1
This is mainly due to https://github.com/rust-lang/rust/commit/dead08cb33134
2017-09-05Run nightly rustfmtOliver Schneider-110/+92
2017-08-15RustupOliver Schneider-1/+1
2017-08-14Fix verbose_bit_mask off by one errorMateusz Mikula-1/+1
Fixes #1940
2017-08-14RustfmtOliver Schneider-52/+85
2017-08-01The lint doesn't improve perf (yet)Oliver Schneider-1/+1
2017-08-01Use the authoring tool to create a new lintOliver Schneider-2/+40