File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -1632,6 +1632,7 @@ Released 2018-09-13
1632
1632
[ `assign_ops` ] : https://rust-lang.github.io/rust-clippy/master/index.html#assign_ops
1633
1633
[ `async_yields_async` ] : https://rust-lang.github.io/rust-clippy/master/index.html#async_yields_async
1634
1634
[ `await_holding_lock` ] : https://rust-lang.github.io/rust-clippy/master/index.html#await_holding_lock
1635
+ [ `await_holding_refcell_ref` ] : https://rust-lang.github.io/rust-clippy/master/index.html#await_holding_refcell_ref
1635
1636
[ `bad_bit_mask` ] : https://rust-lang.github.io/rust-clippy/master/index.html#bad_bit_mask
1636
1637
[ `bind_instead_of_map` ] : https://rust-lang.github.io/rust-clippy/master/index.html#bind_instead_of_map
1637
1638
[ `blacklisted_name` ] : https://rust-lang.github.io/rust-clippy/master/index.html#blacklisted_name
Original file line number Diff line number Diff line change 67
67
deprecation: None ,
68
68
module: "await_holding_lock" ,
69
69
} ,
70
+ Lint {
71
+ name: "await_holding_refcell_ref" ,
72
+ group: "pedantic" ,
73
+ desc: "Inside an async function, holding a RefCell ref while calling await" ,
74
+ deprecation: None ,
75
+ module: "await_holding_refcell_ref" ,
76
+ } ,
70
77
Lint {
71
78
name: "bad_bit_mask" ,
72
79
group: "correctness" ,
You can’t perform that action at this time.
0 commit comments