summaryrefslogtreecommitdiff
path: root/.editorconfig
diff options
context:
space:
mode:
authorBastian Schmidt <batzen@gmx.org>2018-12-08 19:45:34 +0100
committerAaron Robinson <arobins@microsoft.com>2018-12-08 10:45:34 -0800
commit2d1a55eefd7bbebe5968b02229da5dfcf6505bf7 (patch)
tree911fc2c14ef72082157285c47bdc2f00dc7f8174 /.editorconfig
parent12fafad1c95a3379a0d8bd9e584a8161cb3f9fe1 (diff)
downloadcoreclr-2d1a55eefd7bbebe5968b02229da5dfcf6505bf7.tar.gz
coreclr-2d1a55eefd7bbebe5968b02229da5dfcf6505bf7.tar.bz2
coreclr-2d1a55eefd7bbebe5968b02229da5dfcf6505bf7.zip
Invalid setting csharp_new_line_within_query_expression_clauses in .editorconfig (#21449)
Same as in https://github.com/dotnet/corefx/issues/25991. Roslyn doesn't support csharp_new_line_within_query_expression_clauses. But Roslyn does support csharp_new_line_between_query_expression_clauses and it's missing from .editorconfig. I also removed the comment "# Trim trailing whitespace" because that option is not set.
Diffstat (limited to '.editorconfig')
-rw-r--r--.editorconfig3
1 files changed, 1 insertions, 2 deletions
diff --git a/.editorconfig b/.editorconfig
index 0360ba7fae..7df5ca9abc 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -7,7 +7,6 @@ root = true
# Default settings:
# A newline ending every file
# Use 4 spaces as indentation
-# Trim trailing whitespace
[*]
insert_final_newline = true
indent_style = space
@@ -22,7 +21,7 @@ csharp_new_line_before_catch = true
csharp_new_line_before_finally = true
csharp_new_line_before_members_in_object_initializers = true
csharp_new_line_before_members_in_anonymous_types = true
-csharp_new_line_within_query_expression_clauses = true
+csharp_new_line_between_query_expression_clauses = true
# Indentation preferences
csharp_indent_block_contents = true