### What it does See also rust-lang/rust-clippy#11933 ### Advantage - Avoid accidents in forgetting to inherit ### Drawbacks - There may be cases where avoiding inheritance is intentional ### Example ```toml [workspace] [workspace.lints] [package] ``` Could be written as: ```toml [workspace] [workspace.lints] [package] [lints] workspace = true ```