Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Closed
Meowtimer opened this issue Feb 1, 2024 · 0 comments · Fixed by #1174
Milestone

Comments

@Meowtimer
Copy link

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;

@belav belav added this to the Planned milestone Feb 1, 2024
@belav belav modified the milestones: Planned, 0.27.3 Feb 11, 2024
belav added a commit that referenced this issue Feb 11, 2024
belav added a commit that referenced this issue Feb 17, 2024
* Sort static system usings above other static usings

closes #1162

* formatting files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants