--- source: crates/biome_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 Indent width: 2 Line ending: LF Line width: 80 Quote style: Double Quotes JSX quote style: Double Quotes Quote properties: As needed Trailing comma: All Semicolons: Always Arrow parentheses: Always Bracket spacing: true Bracket same line: false Attribute Position: Auto ----- ```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} ```