Prettier Configuration

So I have a CSS code as below:
h1 > * {
  /* some styling */
}

and prettier tidy it like this:
h1>* {
  /* some styling */
}

is there a way to prevent that behavior? or maybe make it reverse, from cluttered to spaced.
Was this page helpful?