I prefer my code to be more compact but JetBrains Rider (or any IntelliJ based editor) automatically formats it like this:
void Start()
{
}
How can I change it to the following by default?
void Start() {
}
You should not configure this thing manually in settings, just allow Rider to "learn" from your code.
Reformat and cleanup...
-> Detect code style settings...
from alt+enter
menu:P.S. This thing works in JetBrains Rider and R# tools, do not know about other IDEs, probably there you have to find the same settings manually.