📄 .editorconfig
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
root = true

# All files
[*]
indent_style = space
insert_final_newline = true

# Config files
[*.{xml,json,slnx,csproj,props}]
indent_size = 2

# C# files
[*.cs]
indent_size = 4
tab_width = 4
max_line_length = 120