File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -239,6 +239,7 @@ dotnet_naming_style.prefix_private_field_with_underscore.required_prefix
239
239
# Code files
240
240
[* .{cs,vb} ]
241
241
242
+ # Migrate back from old Toolkit.ruleset
242
243
dotnet_diagnostic.CA1001.severity = warning
243
244
dotnet_diagnostic.CA1009.severity = warning
244
245
dotnet_diagnostic.CA1016.severity = warning
@@ -316,6 +317,6 @@ dotnet_diagnostic.SA1633.severity = none
316
317
dotnet_diagnostic.SA1634.severity = none
317
318
dotnet_diagnostic.SA1652.severity = none
318
319
319
- dotnet_diagnostic.SA1629.severity = none
320
- dotnet_diagnostic.SA1413.severity = none
321
- dotnet_diagnostic.SA1314.severity = none
320
+ dotnet_diagnostic.SA1629.severity = none # DocumentationTextMustEndWithAPeriod: Let's enable this rule back when we shift to WinUI3 (v8.x). If we do it now, it would mean more than 400 file changes.
321
+ dotnet_diagnostic.SA1413.severity = none # UseTrailingCommasInMultiLineInitializers: This would also mean a lot of changes at the end of all multiline intializers. It's also debatable if we want this or not.
322
+ dotnet_diagnostic.SA1314.severity = none # TypeParameterNamesMustBeginWithT: We do have a few templates that don't start with T. We need to double check that changing this is not a breaking change. If not, we can re-enable this.
You can’t perform that action at this time.
0 commit comments