Skip to content
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

Update to StyleCop.Analyzers 1.2.0-beta.556 #176

Merged
merged 1 commit into from
Mar 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion GitHubIssueFormsParser/.editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ dotnet_diagnostic.SA1006.severity = suggestion # SA1006: Preprocessor keywords
dotnet_diagnostic.SA1007.severity = suggestion # SA1007: Operator keyword should be followed by space
dotnet_diagnostic.SA1008.severity = suggestion # SA1008: Opening parenthesis should be spaced correctly
dotnet_diagnostic.SA1009.severity = suggestion # SA1009: Closing parenthesis should be spaced correctly
dotnet_diagnostic.SA1010.severity = none # SA1010: Opening square brackets should be spaced correctly # TODO review this, temporarily disabled until https://github.com/DotNetAnalyzers/StyleCopAnalyzers/issues/3687 is resolved. Hopefully soon by merging https://github.com/DotNetAnalyzers/StyleCopAnalyzers/pull/3729
dotnet_diagnostic.SA1010.severity = suggestion # SA1010: Opening square brackets should be spaced correctly
dotnet_diagnostic.SA1011.severity = suggestion # SA1011: Closing square brackets should be spaced correctly
dotnet_diagnostic.SA1012.severity = suggestion # SA1012: Opening braces should be spaced correctly
dotnet_diagnostic.SA1013.severity = suggestion # SA1013: Closing braces should be spaced correctly
Expand Down
2 changes: 1 addition & 1 deletion GitHubIssueFormsParser/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.556">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public static IssueFormBody Parse(IssueFormBodyText issueFormBodyText, IssueForm
return templateItemIdx == templateItems.Count - 1 ? null : templateItems[templateItemIdx + 1];
}

private static (int startIdx, int valueLength) GetLevel3HeaderValueIndexes(
private static (int StartIdx, int ValueLength) GetLevel3HeaderValueIndexes(
IssueFormYmlTemplateItemLabel currentH3Header,
IssueFormYmlTemplateItemLabel? nextH3Header,
IssueFormBodyText issueFormBodyText)
Expand Down
Loading