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

Code Style Initiative #10270

Open
harshit7962 opened this issue Jan 13, 2025 · 6 comments
Open

Code Style Initiative #10270

harshit7962 opened this issue Jan 13, 2025 · 6 comments
Labels
area-Styling Indicates if an issue or a PR is for style changes Good First Issue metadata: Issue should be easy to implement, good for first-time contributors help wanted [up-for-grabs] Good issue for external contributors

Comments

@harshit7962
Copy link
Member

harshit7962 commented Jan 13, 2025

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

  1. Remove the analyzer's severity from .editorconfig in src folder. It is generally added as dotnet_diagnostic.IDE0044.severity = suggestion.
  2. Using the script start-vs.cmd, open WPF in Visual Studio
  3. Build the solution (if not already built).
  4. The build is likely to fail with errors/warnings of IDE0044.
  5. Click on any of the warning/error from Error List window, and it should navigate to the line that violates the rule.
  6. On that line, use the shortcut Ctrl + . or right click to find Quick Actions and Refactoring
  7. It should open the possible fixes, one of which would be related to the warning being fixed (as in the image below).
    Image
  8. As in the image above, click on Fix all occurrences in Solution, which should resolve the warning in the solution.

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 in PresentationBuildTasks.csproj. Similarly, fix the occurrences in all the csproj.

Raising the PR

  • There should be no changes to the public API contract. If there are violations, instead of fixing them, suppress the warning.
  • Apart from the suppressions, ensure that all the changes are automated.
  • There should be no behavioral changes in these PRs; they should only comprise the fixes for these analyzer changes.
  • Unless the changes in one resolution are very small (10-20 files), raise a single PR for a single fix. This will help in the easier review process.
  • If fixing a single warning changes a lot of files (>=500), try creating sub-PRs for individual assemblies if that helps reduce the count.
  • Name the PR with the pre-text [StyleCleanUp] for better visibility.
  • As with other PRs, each PR will be taken for a test pass.
  • Try branching out fixes on top of others to minimize merge conflicts. Let us know the order in which you would like the PRs to be taken.

Warnings to be removed

Feel free to create individual sub-issues and assign it to yourself before picking up any of these.

@harshit7962 harshit7962 added Good First Issue metadata: Issue should be easy to implement, good for first-time contributors help wanted [up-for-grabs] Good issue for external contributors labels Jan 13, 2025
@h3xds1nz
Copy link
Member

Think you need at least triage rights on the repo to create or link sub-issues by the way.

@harshit7962 harshit7962 added the area-Styling Indicates if an issue or a PR is for style changes label Jan 15, 2025
@harshit7962
Copy link
Member Author

harshit7962 commented Jan 15, 2025

Ah, didn't realize it.
Would request anyone picking an issue to comment it here and then we create the sub-issue.

@h3xds1nz
Copy link
Member

I also don't think we should enforce the ones that are just suggestions in .editorconfig

wpf/.editorconfig

Lines 260 to 261 in 2fa8170

# IDE0057: Use range operator
dotnet_diagnostic.IDE0057.severity = suggestion

e.g. There's no real gain in IDE0057 for example (tbh personal bias, I don't like them 😀 )

@harshit7962
Copy link
Member Author

@h3xds1nz, yeah we are of the same opinion here. Not enforcing the ones which are suggestions. I did not see that IDE0057 is a suggestion even in the root config.

I believe using the dotnet format option with --severity set to warn will not enforce such analyzers, but the visual studio might show a possible fix. So to avoid the confusion, will mark this one as resolved.

Thanks for pointing this out.

@jizc
Copy link
Contributor

jizc commented Mar 23, 2025

IDE0054: Use compound assignment #10619

@jizc
Copy link
Contributor

jizc commented Mar 23, 2025

IDE1005: Use conditional delegate call #10621

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area-Styling Indicates if an issue or a PR is for style changes Good First Issue metadata: Issue should be easy to implement, good for first-time contributors help wanted [up-for-grabs] Good issue for external contributors
Projects
None yet
Development

No branches or pull requests

3 participants