-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
Add newly introduced modifiers to our csharp_preferred_modifier_order editorconfig #86668
Conversation
Tagging subscribers to this area: @dotnet/runtime-infrastructure Issue DetailsThe C# code style rule that reads this setting puts any unknown identifiers at the end of the list, which can cause confusing behavior (for example
|
Tagging subscribers to this area: @dotnet/area-meta Issue DetailsThe C# code style rule that reads this setting puts any unknown identifiers at the end of the list, which can cause confusing behavior (for example
|
Updated from main as there may have been usages of the current ordering rules that have crept in (such as the usages where I found this case) that I would need to fix before merging. |
The C# code style rule that reads this setting puts any unknown identifiers at the end of the list, which can cause confusing behavior (for example
file
coming after other modifiers likestatic
instead of being at the start with the access modifiers). Update our value to add the modifiers introduced since we last wrote this.