I prefer to keep my code as compact as possible.

One line of code for something as simple as below is preferred:
if($a) return;

instead, all of the formatting styles do the following:

if($a)
    return;

same with loops eg:
foreach ($files as $file) test($file);

    KyleMorley changed the title to Is there an option to not auto indent one-liners?.

      Hello Kyle,

      There isn't such an option, but it makes sense. We will do that.

      Thank you!

        This will be available in the next pre-release.

        Thank you!

          Write a Reply...