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>2021-03-23 17:04:52 +0300
committerGitHub <noreply@github.com>2021-03-23 17:04:52 +0300
commit184a5b103ca9fec1e7e7e0d3a411a6d15f1bb867 (patch)
tree46e2efa85f038c81ab0f54dd6a40a424995e6513 /.editorconfig
parentca1a5cf09bc2e286c24029f205d376831af1e383 (diff)
Enable CA1052 (static holder types should be static) (#50047)
* Enable CA1052 (static holder types should be static) * Fix a few additional warnings in 'all configurations'
Diffstat (limited to '.editorconfig')
-rw-r--r--.editorconfig7
1 files changed, 4 insertions, 3 deletions
diff --git a/.editorconfig b/.editorconfig
index 05c161c83ec..827c77d4a85 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -158,9 +158,10 @@ csharp_space_between_parentheses = false
csharp_space_between_square_brackets = false
# Analyzers
-dotnet_code_quality.ca1802.api_surface = private, internal
-dotnet_code_quality.ca1822.api_surface = private, internal
-dotnet_code_quality.ca2208.api_surface = public
+dotnet_code_quality.CA1052.api_surface = private, internal
+dotnet_code_quality.CA1802.api_surface = private, internal
+dotnet_code_quality.CA1822.api_surface = private, internal
+dotnet_code_quality.CA2208.api_surface = public
# License header
file_header_template = Licensed to the .NET Foundation under one or more agreements.\nThe .NET Foundation licenses this file to you under the MIT license.