diff --git a/ShareJobsData/.editorconfig b/ShareJobsData/.editorconfig index 688d586..31e885c 100644 --- a/ShareJobsData/.editorconfig +++ b/ShareJobsData/.editorconfig @@ -498,7 +498,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 diff --git a/ShareJobsData/Directory.Build.props b/ShareJobsData/Directory.Build.props index 61703be..2881698 100644 --- a/ShareJobsData/Directory.Build.props +++ b/ShareJobsData/Directory.Build.props @@ -61,7 +61,7 @@ all runtime; build; native; contentfiles; analyzers; buildtransitive - + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/ShareJobsData/tests/ShareJobsDataCli.Tests/Auxiliary/Http/TestHttpClientFactory.cs b/ShareJobsData/tests/ShareJobsDataCli.Tests/Auxiliary/Http/TestHttpClientFactory.cs index b0ff1aa..1556cf9 100644 --- a/ShareJobsData/tests/ShareJobsDataCli.Tests/Auxiliary/Http/TestHttpClientFactory.cs +++ b/ShareJobsData/tests/ShareJobsDataCli.Tests/Auxiliary/Http/TestHttpClientFactory.cs @@ -2,7 +2,7 @@ namespace ShareJobsDataCli.Tests.Auxiliary.Http; internal static class TestHttpClient { - public static (HttpClient httpClient, OutboundHttpRequests outboundHttpRequests) CreateWithRecorder(TestHttpMessageHandler testHttpMessageHandler) + public static (HttpClient HttpClient, OutboundHttpRequests OutboundHttpRequests) CreateWithRecorder(TestHttpMessageHandler testHttpMessageHandler) { #pragma warning disable CA2000 // Dispose objects before losing scope var recordingHandler = new RecordingHandler