Expand description
Lints that checks for suspicious, potentially incorrect code.
Unlike correctness lints, these may have false positives that you need
to #[allow(...)].
These lints are warn by default.
Modulesยง
- insert_
message_ resource - Checks for the
Messages<T>resource being manually inserted withApp::init_resource()orApp::insert_resource()instead of withApp::add_message(). - iter_
current_ update_ messages - Checks for calls to
Messages::<T>::iter_current_update_messages(). - unit_
in_ bundle - Checks for
Bundles that contain the unit()as a component.