You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are numerous places where we use either expect()/unwrap()/panic!()/assert!() we should review and remove these where possible as they will cause the host process to crash.
There are numerous places where we use either
expect()/unwrap()/panic!()/assert!()
we should review and remove these where possible as they will cause the host process to crash.Consider adding the following clippy checks:
expect_used
panic
unwrap_used
We should also check for use of indexing like this
function_call.parameters.clone().unwrap()[0].clone()
without checking the number of items.The text was updated successfully, but these errors were encountered: