Adjust editor config to reflect cast conventions in C# libraries

Most of our code includes a space after the cast, e.g. `(int) x`
instead of `(int)x`. This .editorconfig change means that will be
the default formatting when it's performed by the editor.
pull/10173/head
Jon Skeet 2022-06-23 11:16:30 +01:00 committed by Jon Skeet
parent 9f58ee3f04
commit 512f42c8c6
1 changed files with 4 additions and 1 deletions

View File

@ -14,4 +14,7 @@ tab_width = 4
# New line preferences
end_of_line = lf
insert_final_newline = false
trim_trailing_whitespace = true
trim_trailing_whitespace = true
[*.cs]
csharp_space_after_cast = true