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

github.com/aspnet/MessagePack-CSharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2020-06-22 03:03:40 +0300
committerAndrew Arnott <andrewarnott@gmail.com>2020-06-22 03:03:53 +0300
commite56dd5f9af84bf1af4c85867583ac7c5289c0682 (patch)
tree8deac7c67a2723c59cbc73be35b92682d261a7ee /.editorconfig
parent895bd1d0a95b82d4a3e7aaa4acaf67eba81448b0 (diff)
Update StyleCop.Analyzers and NB.GV version
Diffstat (limited to '.editorconfig')
-rw-r--r--.editorconfig12
1 files changed, 10 insertions, 2 deletions
diff --git a/.editorconfig b/.editorconfig
index e92e7f34..e7f00d1c 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -1,4 +1,4 @@
-# EditorConfig is awesome:http://EditorConfig.org
+# EditorConfig is awesome:http://EditorConfig.org
# top-most EditorConfig file
root = true
@@ -29,6 +29,14 @@ indent_size = 2
# Dotnet code style settings:
[*.{cs,vb}]
+
+# Use tuple syntax
+dotnet_diagnostic.SA1141.severity = silent
+# Tuple types in signatures should have element names
+dotnet_diagnostic.SA1414.severity = silent
+# Braces should not be omitted from multi-line child statement
+dotnet_diagnostic.SA1519.severity = silent
+
# Sort using and Import directives with System.* appearing first
dotnet_sort_system_directives_first = true
dotnet_style_qualification_for_field = false:silent
@@ -154,4 +162,4 @@ csharp_new_line_before_members_in_object_initializers = true
csharp_new_line_before_members_in_anonymous_types = true
# Blocks are allowed
-csharp_prefer_braces = true:silent \ No newline at end of file
+csharp_prefer_braces = true:silent