RL0920 - Ensures all language elements have the proper whitespace
Statements containing the following language keywords, must have the proper whitespace layout.
NOTE: future versions of this rule will provide individual language keyword configuration.
Accepted
else if (condition)
for (...)
foreach (...)
if (condition)
lock (mutex)
switch (value)
while (condition)
Rejected
else if(condition)
for(...)
foreach(...)
if(condition)
lock(mutex)
switch(value)
while(condition)