--- source: crates/rome_formatter_test/src/snapshot_builder.rs info: js/module/parentheses/range_parentheses_binary.js --- # Input ```js import React from 'react'; function test() { const AppShelled = () => (1 + 2) } function one() {return 1} ``` ============================= # Outputs ## Output 1 ----- Indent style: Tab Line width: 80 Quote style: Double Quotes Quote properties: As needed Trailing comma: All Semicolons: Always ----- ```js import React from 'react'; function test() { const AppShelled = () => 1 + 2 } function one() {return 1} ``` # Lines exceeding max width of 80 characters ``` 1: import React from 'react'; function test() { const AppShelled = () => 1 + 2 } function one() {return 1} ```