I'm working on a project where I've installed prettier. However, I've noticed that it always reformats the code snippet below:
constructor(public url: string) {
}
It changes it to:
constructor(public url: string) {}
Is there any way to stop this automatic reformatting?