Skip to content

Commit b3f44dc

Browse files
authored
Update to StyleCop.Analyzers 1.2.0-beta.556 (#176)
1 parent 83247f4 commit b3f44dc

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

GitHubIssueFormsParser/.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,7 @@ dotnet_diagnostic.SA1006.severity = suggestion # SA1006: Preprocessor keywords
497497
dotnet_diagnostic.SA1007.severity = suggestion # SA1007: Operator keyword should be followed by space
498498
dotnet_diagnostic.SA1008.severity = suggestion # SA1008: Opening parenthesis should be spaced correctly
499499
dotnet_diagnostic.SA1009.severity = suggestion # SA1009: Closing parenthesis should be spaced correctly
500-
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
500+
dotnet_diagnostic.SA1010.severity = suggestion # SA1010: Opening square brackets should be spaced correctly
501501
dotnet_diagnostic.SA1011.severity = suggestion # SA1011: Closing square brackets should be spaced correctly
502502
dotnet_diagnostic.SA1012.severity = suggestion # SA1012: Opening braces should be spaced correctly
503503
dotnet_diagnostic.SA1013.severity = suggestion # SA1013: Closing braces should be spaced correctly

GitHubIssueFormsParser/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
<PrivateAssets>all</PrivateAssets>
6262
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
6363
</PackageReference>
64-
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
64+
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.556">
6565
<PrivateAssets>all</PrivateAssets>
6666
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
6767
</PackageReference>

GitHubIssueFormsParser/src/GitHubIssuesParserCli/IssueFormBodies/Parsing/IssueFormBodyParser.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public static IssueFormBody Parse(IssueFormBodyText issueFormBodyText, IssueForm
3131
return templateItemIdx == templateItems.Count - 1 ? null : templateItems[templateItemIdx + 1];
3232
}
3333

34-
private static (int startIdx, int valueLength) GetLevel3HeaderValueIndexes(
34+
private static (int StartIdx, int ValueLength) GetLevel3HeaderValueIndexes(
3535
IssueFormYmlTemplateItemLabel currentH3Header,
3636
IssueFormYmlTemplateItemLabel? nextH3Header,
3737
IssueFormBodyText issueFormBodyText)

0 commit comments

Comments
 (0)