I need a slightly custom format config (indentation, spaces after clauses, and enters on code blocks, but I'm not sure if I can configure these rules:
- 3 space indentation, no tabs
- if(....) => if (....) // added space after the if
- if (...) { => if (...)
{ // code block starts on next line, also ends on next line after the last clause in the block: if (...)
{
...
...
}
Thanks!