SOQL USING clause isn't indenting properly

Issue #1 resolved
Scott Wells repo owner created an issue

It's formatting as:

Account[] accounts =
[
    SELECT AccountNumber
    FROM Account
        USING SCOPE Everything
];

instead of:

Account[] accounts =
[
    SELECT AccountNumber
    FROM Account
    USING SCOPE Everything
];

Comments (2)

  1. Log in to comment