dprint-plugin-typescript icon indicating copy to clipboard operation
dprint-plugin-typescript copied to clipboard

Break interfaces/types onto multiple lines

Open todor-a opened this issue 10 months ago • 0 comments

Provide an option to format this:

type Foo = { a: string; b: string; }

as:

type Foo = { 
  a: string;
  b: string; 
}

todor-a avatar Apr 04 '24 06:04 todor-a