blob: a2bf78c3318ac05a355b8447ae47965add091d61 [file] [log] [blame]
Jensaaraifb6016e2022-03-24 22:58:13 -07001# Remove the line below if you want to inherit .editorconfig settings from higher directories
2root = true
3
4# C# files
5[*.cs]
6
7#### Core EditorConfig Options ####
8
9# Indentation and spacing
10indent_size = 4
11indent_style = space
12tab_width = 4
13
14# New line preferences
Jon Skeetafb0ca42022-03-28 11:32:29 +010015end_of_line = lf
Jensaaraifb6016e2022-03-24 22:58:13 -070016insert_final_newline = false
Jon Skeet512f42c2022-06-23 11:16:30 +010017trim_trailing_whitespace = true
18
19[*.cs]
20csharp_space_after_cast = true