假设我想用 rust-clippy 对我的所有代码进行 lint。现在,我将不得不写
#![feature(plugin)]
#![plugin(clippy)]
在我的每个来源中。我可以以某种方式将 Cargo 配置为让 rustc 使用该插件而无需将其添加到我的源文件中吗?如果是这样,怎么做?
假设我想用 rust-clippy 对我的所有代码进行 lint。现在,我将不得不写
#![feature(plugin)]
#![plugin(clippy)]
在我的每个来源中。我可以以某种方式将 Cargo 配置为让 rustc 使用该插件而无需将其添加到我的源文件中吗?如果是这样,怎么做?