orleans icon indicating copy to clipboard operation
orleans copied to clipboard

Enforce code style defined in `.editorconfig`

Open Meir017 opened this issue 5 months ago • 1 comments

make https://github.com/dotnet/orleans/blob/main/.editorconfig#L509C1-L509C48

# IDE1006: Required naming style
-dotnet_diagnostic.IDE1006.severity = suggestion
+dotnet_diagnostic.IDE1006.severity = warning

right now the code styles are not enforced.

the only issue I see with enforcing is that there isn't a fix-all option Image

I believe copilot would be able to do most of the work since there should be almost no cross-file dependencies (no need to understand complex references between files)

Meir017 avatar Jun 11 '25 21:06 Meir017

the only issue I see with enforcing is that there isn't a fix-all option

Someone hacked together a way to do it: https://github.com/mwagnerEE/Wagner.NamingStyles

xref https://github.com/dotnet/roslyn/issues/14983

ReubenBond avatar Jun 11 '25 22:06 ReubenBond