diff --git a/.editorconfig b/.editorconfig index 14ff673..407a59b 100644 --- a/.editorconfig +++ b/.editorconfig @@ -25,12 +25,12 @@ trim_trailing_whitespace = true insert_final_newline = true [*.cs] -file_header_template = // Copyright (c) 2023 Timothy Schenk. Subject to the GNU AGPL Version 3 License. +dotnet_diagnostic.MA0004.severity = none +file_header_template = // Copyright (c) 2023 Timothy Schenk.Subject to the GNU AGPL Version 3 License. indent_size = 4 dotnet_sort_system_directives_first = true dotnet_diagnostic.MA0007.severity = none -MA0004.report = DetectContext # (default) Try to detect the current context and report only if it considers ConfigureAwait is needed -MA0004.report = Always # Always report missing ConfigureAwait whatever the context +#MA0004.report = DetectContext # (default) Try to detect the current context and report only if it considers ConfigureAwait is needed # Don't use this. qualifier dotnet_style_qualification_for_field = false:suggestion dotnet_style_qualification_for_property = false:suggestion @@ -239,7 +239,7 @@ dotnet_diagnostic.CA1857.severity = warning dotnet_diagnostic.CA1858.severity = warning # CA2007: Consider calling ConfigureAwait on the awaited task -dotnet_diagnostic.CA2007.severity = warning +dotnet_diagnostic.CA2007.severity = none # CA2008: Do not create tasks without passing a TaskScheduler dotnet_diagnostic.CA2008.severity = warning