Not sure this is really an issue now that I figured out the source.
The issue was the code formatter was ignoring APEX Doc comments and not aligning the leading * characters.
The problem seems to be that it doesn't like having an annotation before the doc comments.
So IE:
@AuraEnabled
/**
* @description foo
*/
public static void foo() {}
would not reformat
but this does get reformatted.
public static void foo() {}
gets reformatted properly to:
/**
* @description foo
*/
@AuraEnabled
public static void foo() {}
Is this something that can be addressed in the formatting code?
thanks
Patrick