Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# https://editorconfig.org/

# What is EditorConfig?

# EditorConfig helps maintain consistent coding styles for multiple developers
# working on the same project across various editors and IDEs. The EditorConfig
# project consists of a file format for defining coding styles and a collection
# of text editor plugins that enable editors to read the file format and adhere
# to defined styles. EditorConfig files are easily readable and they work nicely
# with version control systems.

# top-most EditorConfig file
root = true

[*]
charset = utf-8
end_of_line = crlf

indent_style = tab
indent_size = 2

insert_final_newline = true
trim_trailing_whitespace = true

[*.cs]
indent_size = 4
Loading
Loading