How can I modify how Prettier formats JavaScript?
Advertisements Prettier formats classes like this: class Foo { bar = 1 } I want to change this behavior to class Foo { bar = 1 } How can I write a Prettier Plugin or something that modifies a single behavior? Related: How can I prevent prettier behavior >Solution : to quote the Prettier docs:… Read More How can I modify how Prettier formats JavaScript?