I think the formatter and comments will never be friends
Format the following sql script:
VAR name VARCHAR2
BEGIN
-- Set name
:name := 'Name';
END;
/
As you can see, the 5th line is indented one blank too many.
If you remove the comment in the line above, it looks like this:
VAR name VARCHAR2
BEGIN
:name := 'Name';
END;
/