dprint-plugin-typescript
dprint-plugin-typescript copied to clipboard
Break interfaces/types onto multiple lines
Provide an option to format this:
type Foo = { a: string; b: string; }
as:
type Foo = {
a: string;
b: string;
}