Skip to content

Commit 01d7f8c

Browse files
committed
Added a few comments on the .editorconfig file.
1 parent 49f2a95 commit 01d7f8c

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.editorconfig

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,7 @@ dotnet_naming_style.prefix_private_field_with_underscore.required_prefix
239239
# Code files
240240
[*.{cs,vb}]
241241

242+
# Migrate back from old Toolkit.ruleset
242243
dotnet_diagnostic.CA1001.severity = warning
243244
dotnet_diagnostic.CA1009.severity = warning
244245
dotnet_diagnostic.CA1016.severity = warning
@@ -316,6 +317,6 @@ dotnet_diagnostic.SA1633.severity = none
316317
dotnet_diagnostic.SA1634.severity = none
317318
dotnet_diagnostic.SA1652.severity = none
318319

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.

0 commit comments

Comments
 (0)