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 @@ -1514,6 +1514,7 @@ Released 2018-09-13
1514
1514
[ `assign_ops` ] : https://rust-lang.github.io/rust-clippy/master/index.html#assign_ops
1515
1515
[ `async_yields_async` ] : https://rust-lang.github.io/rust-clippy/master/index.html#async_yields_async
1516
1516
[ `await_holding_lock` ] : https://rust-lang.github.io/rust-clippy/master/index.html#await_holding_lock
1517
+ [ `await_holding_refcell_ref` ] : https://rust-lang.github.io/rust-clippy/master/index.html#await_holding_refcell_ref
1517
1518
[ `bad_bit_mask` ] : https://rust-lang.github.io/rust-clippy/master/index.html#bad_bit_mask
1518
1519
[ `bind_instead_of_map` ] : https://rust-lang.github.io/rust-clippy/master/index.html#bind_instead_of_map
1519
1520
[ `blacklisted_name` ] : https://rust-lang.github.io/rust-clippy/master/index.html#blacklisted_name
Original file line number Diff line number Diff line change @@ -66,6 +66,13 @@ pub static ref ALL_LINTS: Vec<Lint> = vec![
66
66
deprecation: None ,
67
67
module: "await_holding_lock" ,
68
68
} ,
69
+ Lint {
70
+ name: "await_holding_refcell_ref" ,
71
+ group: "pedantic" ,
72
+ desc: "Inside an async function, holding a RefCell ref while calling await" ,
73
+ deprecation: None ,
74
+ module: "await_holding_refcell_ref" ,
75
+ } ,
69
76
Lint {
70
77
name: "bad_bit_mask" ,
71
78
group: "correctness" ,
You can’t perform that action at this time.
0 commit comments