-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Code Style Initiative #10270
Comments
Think you need at least triage rights on the repo to create or link sub-issues by the way. |
Ah, didn't realize it. |
I also don't think we should enforce the ones that are just suggestions in Lines 260 to 261 in 2fa8170
e.g. There's no real gain in IDE0057 for example (tbh personal bias, I don't like them 😀 ) |
@h3xds1nz, yeah we are of the same opinion here. Not enforcing the ones which are suggestions. I did not see that I believe using the dotnet format option with Thanks for pointing this out. |
IDE0054: Use compound assignment #10619 |
IDE1005: Use conditional delegate call #10621 |
Description
This is a tracker issue to ensure that our code style and guidelines align with the standards set by dotnet. This is a follow-up of the issue .
As in the PR we have added .editorconfig that helps us ensure these style requirements during the build. Given the current state of code, quite a few of these analyzers are disabled in src/Microsoft.DotNet.Wpf/src and src/Microsoft.DotNet.Wpf/cycle-breakers in their respective .editorconfig. The overall idea is to get rid of .editorconfig(s) in the src and have a single .editorconfig (the one in the root).
Steps to proceed with the task
Assume that we are fixing IDE0044: Make field readonly
dotnet_diagnostic.IDE0044.severity = suggestion
.Error List
window, and it should navigate to the line that violates the rule.Ctrl + .
or right click to findQuick Actions and Refactoring
Alternatively
After the step 1, use the command
dotnet format analyzers --diagnostics IDE0044 --severity warn .\src\Microsoft.DotNet.Wpf\src\PresentationBuildTasks\PresentationBuildTasks.csproj
. This will fix occurrences of IDE0044 violations inPresentationBuildTasks.csproj
. Similarly, fix the occurrences in all the csproj.Raising the PR
Warnings to be removed
Feel free to create individual sub-issues and assign it to yourself before picking up any of these.
The text was updated successfully, but these errors were encountered: