belav / csharpier

CSharpier is an opinionated code formatter for c#.
https://csharpier.com
MIT License
1.42k stars 99 forks source link

using static System.* usings not ordered before other static usings like using System.* ones #1162

Closed Meowtimer closed 9 months ago

Meowtimer commented 10 months ago

Input: using static System.IO.Path; using static PrivateMcNamespace;

Output: using static PrivateMcNamespace; using static System.IO.Path;

Expected behavior: using static System.IO.Path; using static PrivateMcNamespace;