Skip to content

Commit e45cc01

Browse files
committed
f
1 parent a4bd837 commit e45cc01

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

clippy_dev/src/fmt.rs

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -242,10 +242,18 @@ fn run_rustfmt(clippy: &ClippyInfo, update_mode: UpdateMode) {
242242

243243
// Start all format jobs first before waiting on the results.
244244
let mut children = Vec::with_capacity(16);
245-
for &path in &[".", "clippy_dev", "rustc_tools_util", "lintcheck"] {
245+
for &path in &[
246+
".",
247+
"clippy_lints",
248+
"clippy_utils",
249+
"clippy_config",
250+
"clippy_dev",
251+
"rustc_tools_util",
252+
"lintcheck",
253+
] {
246254
let mut cmd = Command::new(&cargo_path);
247255
cmd.current_dir(clippy.path.join(path))
248-
.args(["fmt", "--all"])
256+
.args(["fmt"])
249257
.env("RUSTFMT", &rustfmt_path)
250258
.stdout(Stdio::null())
251259
.stdin(Stdio::null())

0 commit comments

Comments
 (0)