We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Version: 0.1.2
Code sample:
public class MyClass { public int A() => 1; public static int B() => 1; }
Should sort with static members to the top:
static
public class MyClass { public static int B() => 1; public int A() => 1; }
The text was updated successfully, but these errors were encountered:
Sort static members first (#4)
3b80a7b
This change changes the sort algorithm to sort by type, accessibility, static, and then name. Fixes #3. #do release
Successfully merging a pull request may close this issue.
Version: 0.1.2
Code sample:
Should sort with
static
members to the top:The text was updated successfully, but these errors were encountered: