Skip to content

Refactoring DiagnosticDescriptors.cs files #60832

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

Merged
merged 4 commits into from
Mar 10, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Resolve unnecessary spacing
  • Loading branch information
benhopkinstech authored Mar 9, 2025
commit c00189d53bb6524f438d9a66810bae85de1cd2c7
4 changes: 2 additions & 2 deletions src/Components/Analyzers/src/DiagnosticDescriptors.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ internal static class DiagnosticDescriptors

public static readonly DiagnosticDescriptor ComponentParametersShouldBePublic = new(
"BL0004",
CreateLocalizableResourceString(nameof(Resources.ComponentParameterShouldBePublic_Title )),
CreateLocalizableResourceString(nameof(Resources.ComponentParameterShouldBePublic_Title)),
CreateLocalizableResourceString(nameof(Resources.ComponentParameterShouldBePublic_Format)),
Encapsulation,
DiagnosticSeverity.Error,
Expand All @@ -51,7 +51,7 @@ internal static class DiagnosticDescriptors

public static readonly DiagnosticDescriptor ComponentParametersShouldNotBeSetOutsideOfTheirDeclaredComponent = new(
"BL0005",
CreateLocalizableResourceString(nameof(Resources.ComponentParameterShouldNotBeSetOutsideOfTheirDeclaredComponent_Title )),
CreateLocalizableResourceString(nameof(Resources.ComponentParameterShouldNotBeSetOutsideOfTheirDeclaredComponent_Title)),
CreateLocalizableResourceString(nameof(Resources.ComponentParameterShouldNotBeSetOutsideOfTheirDeclaredComponent_Format)),
Usage,
DiagnosticSeverity.Warning,
Expand Down
Loading