Any `JSON` object in DuckDB. The problem is that the JSON operators are not declared here: https://github.com/sql-formatter-org/sql-formatter/blob/master/src/languages/duckdb/duckdb.formatter.ts#L186 Adding ``` // JSON: // '->', // already added for Lambda '->>', ``` should solve the issue. Which SQL and options did you provide as input? ```sql SELECT json_object ->> 'field' ``` **Expected Output** ```sql SELECT json_object ->> 'field' ``` **Actual Output** ```sql SELECT json_object -> > 'field' ``` **Usage** - How are you calling / using the library? VSCode extension - What SQL language(s) does this apply to? DuckDB - Which SQL Formatter version are you using? Latest