📄 .editorconfig
root = true

# All files
[*]
charset = utf-8
end_of_line = lf
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true

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

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

# HTML files
[*.{html,razor}]
indent_size = 2
tab_width = 2

# CSS files
[*.css]
indent_size = 2
tab_width = 2