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
Clippy has many interesting lints that are allowed by default. I went through them all and made a list of those that would be most useful to enable in domain.
Clippy has many interesting lints that are allowed by default. I went through them all and made a list of those that would be most useful to enable in
domain.no_std:alloc_instead_of_core: https://rust-lang.github.io/rust-clippy/master/index.html#alloc_instead_of_corestd_instead_of_alloc: https://rust-lang.github.io/rust-clippy/master/index.html#std_instead_of_allocstd_instead_of_core: https://rust-lang.github.io/rust-clippy/master/index.html#std_instead_of_coreCorrectness:
borrow_as_ptr: https://rust-lang.github.io/rust-clippy/master/index.html#borrow_as_ptrdebug_assert_with_mut_call: https://rust-lang.github.io/rust-clippy/master/index.html#debug_assert_with_mut_calllarge_futures: https://rust-lang.github.io/rust-clippy/master/index.html#large_futureslet_underscore_untyped: https://rust-lang.github.io/rust-clippy/master/index.html#let_underscore_untypedliteral_string_with_formatting_args: https://rust-lang.github.io/rust-clippy/master/index.html#literal_string_with_formatting_argsmissing_errors_doc: https://rust-lang.github.io/rust-clippy/master/index.html#missing_errors_docmissing_fields_in_debug: https://rust-lang.github.io/rust-clippy/master/index.html#missing_fields_in_debugmissing_panics_doc: https://rust-lang.github.io/rust-clippy/master/index.html#missing_panics_docreturn_self_not_must_use: https://rust-lang.github.io/rust-clippy/master/index.html#return_self_not_must_usesignificant_drop_in_scrutinee: https://rust-lang.github.io/rust-clippy/master/index.html#significant_drop_in_scrutineesignificant_drop_tightening: https://rust-lang.github.io/rust-clippy/master/index.html#significant_drop_tighteningundocumented_unsafe_blocks: https://rust-lang.github.io/rust-clippy/master/index.html#undocumented_unsafe_blocksCode quality:
allow_attributes: https://rust-lang.github.io/rust-clippy/master/index.html#allow_attributesdbg_macro: https://rust-lang.github.io/rust-clippy/master/index.html#dbg_macroimplicit_clone: https://rust-lang.github.io/rust-clippy/master/index.html#implicit_clonemultiple_crate_versions: https://rust-lang.github.io/rust-clippy/master/index.html#multiple_crate_versionsunnecessary_safety_comment: https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_safety_commentunnecessary_safety_doc: https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_safety_docunused_async: https://rust-lang.github.io/rust-clippy/master/index.html#unused_asyncunused_async_trait_impl: https://rust-lang.github.io/rust-clippy/master/index.html#unused_async_trait_implDocumentation:
doc_broken_link: https://rust-lang.github.io/rust-clippy/master/index.html#doc_broken_linkdoc_link_with_quotes: https://rust-lang.github.io/rust-clippy/master/index.html#doc_link_with_quotes