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
My suggestion would be to use the same pattern with global System using directives so that they would be sorted before other non-System global using directives.
I don't mind doing the work if this sounds like a reasonable idea.
First of all, great project and big fan of automating formatting.
I noticed an inconsistency when it comes to sorting regular
using System*
directives vsglobal using System*
directives:When sorting the regular
using
directives the System using directives are ordered before the non-system using directives.However when sorting
global using
all the directives are grouped together and sorted as one set.Basically sorting the following:
Results in
Where as sorting the following:
Results in
My suggestion would be to use the same pattern with global System using directives so that they would be sorted before other non-System global using directives.
I don't mind doing the work if this sounds like a reasonable idea.
csharpier/Src/CSharpier/SyntaxPrinter/UsingDirectives.cs
Lines 217 to 223 in a877f7d
The text was updated successfully, but these errors were encountered: