dprint-plugin-typescript
dprint-plugin-typescript copied to clipboard
Align assignments
Hello, I'm looking for a rule which aligns all = or : on assignments,
similar to golang fmt.
Something like this would be positive:
const foo = 12;
const bar = 21;
const foobar = 22;
const foo = {
bar: 123,
barbaz: 123
}
Thanks!