Is it a new style rule in the IDE plugin that makes the formatter in its default configuration enforcing a space after control words such if, while, for? It feels inconsistent imho, as from a developer perspective stdlib and keywords allow to express similar logic but are formatted differently:
repeat(Int.MAX_VALUE) { println() }
while (true) { println() }