Reputation: 766
I found many nice options for auto-reformatting code in WebStorm (Settings->Editor->Code Style-> JavaScript), but how can I change this newline-after-class-declaration formatting:
export class A{
constructor( something )
{
....
to this:
export class A
{
constructor( something )
{
....
?
Upvotes: 1
Views: 91