Summary
Run dotnet format across the entire solution to reformat existing code to match the .editorconfig conventions.
Details
This is a one-time bulk reformatting pass.
It should be done as a standalone commit/PR so that git blame impact is isolated to a single commit, making it easy to skip with git blame --ignore-rev.
Steps:
- Run
dotnet format on the solution
- Review the changes to ensure nothing unexpected
- Commit with a clear message (e.g. "chore: apply dotnet format to match .editorconfig")
- Add the commit SHA to a
.git-blame-ignore-revs file so git blame can skip it
Acceptance Criteria
Dependencies
Summary
Run
dotnet formatacross the entire solution to reformat existing code to match the.editorconfigconventions.Details
This is a one-time bulk reformatting pass.
It should be done as a standalone commit/PR so that
git blameimpact is isolated to a single commit, making it easy to skip withgit blame --ignore-rev.Steps:
dotnet formaton the solution.git-blame-ignore-revsfile sogit blamecan skip itAcceptance Criteria
.editorconfigrules.git-blame-ignore-revsfile created with the formatting commit SHADependencies
.editorconfig) being merged first