ilyalatt / Telega

C# Telegram MTProto Client
https://ilyalatt.github.io/Telega/
MIT License
58 stars 15 forks source link

.editorconfig file needed #45

Closed GihanSoft closed 3 years ago

GihanSoft commented 3 years ago

This will make all editors and IDEs format code in same way. (so no more extra works when ever I format code in my IDE)

ilyalatt commented 3 years ago

Yeah, .editorconfig is good. You can start with smth like

# EditorConfig is awesome: https://EditorConfig.org

root = true
[*.{cs,csproj}]
indent_style = space
indent_size = 4
end_of_line = crlf
trim_trailing_whitespace = true
insert_final_newline = false