Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Toub <stoub@microsoft.com>2022-02-09 00:06:59 +0300
committerGitHub <noreply@github.com>2022-02-09 00:06:59 +0300
commit3ae87395f638a533f37b8e3385f6d3f199a72f4f (patch)
tree05d6256393b5af4e0d77137bf03146e51b982dd9 /eng/CodeAnalysis.src.globalconfig
parent97fc0a45f1002b5425e6d4b3f1cb3931594acc9b (diff)
Initial roll out of !! (#64720)
* Bump version of C# compiler This should be reverted when arcade brings in a new enough compiler. * Fix a few new warnings from updating compiler * Enable IDE0190 to employ parameter null checking * Initial roll out of !! * Fix more compiler warnings from upgrade, plus some test fixes / reverts * Fix a few more tests * Disable profiling test
Diffstat (limited to 'eng/CodeAnalysis.src.globalconfig')
-rw-r--r--eng/CodeAnalysis.src.globalconfig3
1 files changed, 3 insertions, 0 deletions
diff --git a/eng/CodeAnalysis.src.globalconfig b/eng/CodeAnalysis.src.globalconfig
index e5ae41903b5..df9d7285695 100644
--- a/eng/CodeAnalysis.src.globalconfig
+++ b/eng/CodeAnalysis.src.globalconfig
@@ -1539,6 +1539,9 @@ dotnet_diagnostic.IDE0160.severity = silent
# IDE0161: Convert to file-scoped namespace
dotnet_diagnostic.IDE0161.severity = silent
+# IDE0190: Null check can be simplified
+dotnet_diagnostic.IDE0190.severity = suggestion
+
# IDE1005: Delegate invocation can be simplified.
dotnet_diagnostic.IDE1005.severity = suggestion