--- source: crates/rome_formatter_test/src/snapshot_builder.rs info: test_file: ts/assignment/assignment_comments.ts --- # Input ```ts const a = // test 1; const b = /* leading */ 2; const c /* leading */ = 3; const d: string // 1 = // 2 4; const e: string // 1 = // 2 { object: 5 }; ``` ============================= # Outputs ## Output 1 ----- Indent style: Tab Line width: 80 Quote style: Double Quotes Quote properties: As needed Trailing comma: All Semicolons: Always ----- ```ts const a = 1; // test const b = /* leading */ 2; const c = /* leading */ 3; const d: string = 4; // 1 // 2 const e: string = // 1 // 2 { object: 5 }; ```