Before
inputtype User={id:number;name:string}
const user:User={id:1,name:'Ada'}Formatter
Compare the exact input shape with the cleaned output before opening the editor.
Before
inputtype User={id:number;name:string}
const user:User={id:1,name:'Ada'}After
formattedtype User = { id: number; name: string };
const user: User = { id: 1, name: 'Ada' };Workflow
Paste a snippet, run the action, review any highlighted issue, then copy the result back to your work.
Paste a snippet or full file into the editor.
Use Run Formatter from the action bar.
Fix syntax issues if processing stops.
Use Copy code when the result is ready.