Skip to content

Commit

Permalink
Fix fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeGomez committed Aug 15, 2024
1 parent 2daa5b7 commit 7980941
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions tests/compile-test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@ use clippy_config::ClippyConfiguration;
use clippy_lints::declared_lints::LINTS;
use clippy_lints::deprecated_lints::{DEPRECATED, DEPRECATED_VERSION, RENAMED};
use clippy_lints::LintInfo;
use pulldown_cmark::{Options, Parser, html};
use rinja::{Template, filters::Safe};
use pulldown_cmark::{html, Options, Parser};
use rinja::filters::Safe;
use rinja::Template;
use serde::Deserialize;
use test_utils::IS_RUSTC_TEST_SUITE;
use ui_test::custom_flags::rustfix::RustfixMode;
Expand Down Expand Up @@ -466,7 +467,11 @@ impl DiagnosticCollector {
.collect();
metadata.sort_unstable_by(|a, b| a.id.cmp(&b.id));

fs::write("util/gh-pages/index.html", Renderer { lints: &metadata }.render().unwrap()).unwrap();
fs::write(
"util/gh-pages/index.html",
Renderer { lints: &metadata }.render().unwrap(),
)
.unwrap();
});

(Self { sender }, handle)
Expand Down

0 comments on commit 7980941

Please sign in to comment.