1# 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 15end_of_line = lf 16insert_final_newline = false 17trim_trailing_whitespace = true