Handle field attributes in suggestions Fix adjacent code Address review comments https://github.com/rust-lang/rust-clippy/pull/13737#discussion_r1861352124 Address all review comments but one This comment is not yet addressed: https://github.com/rust-lang/rust-clippy/pull/13737#discussion_r1874544907 `initializer_suggestions` -> `lint_inconsistent_struct_field_initializers`
15 lines
744 B
TOML
15 lines
744 B
TOML
avoid-breaking-exported-api = false
|
|
|
|
lint-inconsistent-struct-field-initializers = true
|
|
|
|
[[disallowed-methods]]
|
|
path = "rustc_lint::context::LintContext::lint"
|
|
reason = "this function does not add a link to our documentation, please use the `clippy_utils::diagnostics::span_lint*` functions instead"
|
|
|
|
[[disallowed-methods]]
|
|
path = "rustc_lint::context::LintContext::span_lint"
|
|
reason = "this function does not add a link to our documentation, please use the `clippy_utils::diagnostics::span_lint*` functions instead"
|
|
|
|
[[disallowed-methods]]
|
|
path = "rustc_middle::ty::context::TyCtxt::node_span_lint"
|
|
reason = "this function does not add a link to our documentation, please use the `clippy_utils::diagnostics::span_lint_hir*` functions instead"
|