Skip to content

Commit

Permalink
chore: fix windows only unused var declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
dy0gu committed Feb 7, 2025
1 parent 23bafcb commit 799c764
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions crates/biome_cli/tests/commands/format.rs
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,17 @@ const APPLY_ATTRIBUTE_POSITION_AFTER: &str = r#"<Foo
</Foo>;
"#;

#[cfg(not(windows))]
const DEFAULT_CONFIGURATION_BEFORE: &str = r#"function f() {
return { a, b }
}"#;

#[cfg(not(windows))]
const DEFAULT_CONFIGURATION_AFTER: &str = "function f() {
return { a, b };
}
";

const CUSTOM_CONFIGURATION_BEFORE: &str = r#"function f() {
return { a, b }
}"#;
Expand Down

0 comments on commit 799c764

Please sign in to comment.