update_lints

This commit is contained in:
Daniel Smith 2020-09-10 16:02:00 -04:00
parent 8727169f72
commit 070a751d4c
2 changed files with 8 additions and 0 deletions

View File

@ -1632,6 +1632,7 @@ Released 2018-09-13
[`assign_ops`]: https://rust-lang.github.io/rust-clippy/master/index.html#assign_ops
[`async_yields_async`]: https://rust-lang.github.io/rust-clippy/master/index.html#async_yields_async
[`await_holding_lock`]: https://rust-lang.github.io/rust-clippy/master/index.html#await_holding_lock
[`await_holding_refcell_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#await_holding_refcell_ref
[`bad_bit_mask`]: https://rust-lang.github.io/rust-clippy/master/index.html#bad_bit_mask
[`bind_instead_of_map`]: https://rust-lang.github.io/rust-clippy/master/index.html#bind_instead_of_map
[`blacklisted_name`]: https://rust-lang.github.io/rust-clippy/master/index.html#blacklisted_name

View File

@ -67,6 +67,13 @@
deprecation: None,
module: "await_holding_lock",
},
Lint {
name: "await_holding_refcell_ref",
group: "pedantic",
desc: "Inside an async function, holding a RefCell ref while calling await",
deprecation: None,
module: "await_holding_refcell_ref",
},
Lint {
name: "bad_bit_mask",
group: "correctness",