--- source: crates/rome_formatter_test/src/snapshot_builder.rs info: test_file: js/module/invalid/if_stmt_err.js --- # Input ```js function test() { let x = 10; if test { return 10; } let y = 100; } if (true) { } else var z = 191; if (false) { let x = 99; } else { ``` ============================= # Outputs ## Output 1 ----- Indent style: Tab Line width: 80 Quote style: Double Quotes Quote properties: As needed Trailing comma: All Semicolons: Always ----- ```js function test() { let x = 10; if test { return 10; } let y = 100; } if (true) { } else var z = 191; if (false) { let x = 99; } else { ```