We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4bd837 commit e45cc01Copy full SHA for e45cc01
clippy_dev/src/fmt.rs
@@ -242,10 +242,18 @@ fn run_rustfmt(clippy: &ClippyInfo, update_mode: UpdateMode) {
242
243
// Start all format jobs first before waiting on the results.
244
let mut children = Vec::with_capacity(16);
245
- for &path in &[".", "clippy_dev", "rustc_tools_util", "lintcheck"] {
+ for &path in &[
246
+ ".",
247
+ "clippy_lints",
248
+ "clippy_utils",
249
+ "clippy_config",
250
+ "clippy_dev",
251
+ "rustc_tools_util",
252
+ "lintcheck",
253
+ ] {
254
let mut cmd = Command::new(&cargo_path);
255
cmd.current_dir(clippy.path.join(path))
- .args(["fmt", "--all"])
256
+ .args(["fmt"])
257
.env("RUSTFMT", &rustfmt_path)
258
.stdout(Stdio::null())
259
.stdin(Stdio::null())
0 commit comments