You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I have mentioned my imports to be in order : ['java', 'javax', 'org', 'com'']
but after spotlessApply, imports are organized in order : ['java', 'javax', 'lombok' ,'org', 'com','io'].
I guess lombok should come after 'io'.
The text was updated successfully, but these errors were encountered:
Try asking for your imports to be like this: ['java', 'javax', 'org', 'com', ''] (note the empty string at the end).
The formatter will put all of the unspecified imports (in this case, lombok and io) into the empty group at the end. If you don't tell the formatter where to put the unspecified imports, I don't know what determines where they'll go. See #17 for more details if you're curious.
Hi,
I have mentioned my imports to be in order : ['java', 'javax', 'org', 'com'']
but after spotlessApply, imports are organized in order : ['java', 'javax', 'lombok' ,'org', 'com','io'].
I guess lombok should come after 'io'.
The text was updated successfully, but these errors were encountered: