Add editorconfig for code conventions

This is a widely used file that instructs editors about which settings to use. Won't help in every case but it is a baseline.
This commit is contained in:
Dennis Reimann 2020-06-12 07:12:54 +02:00
parent c2b5c5025f
commit db5d00a4ee
No known key found for this signature in database
GPG Key ID: 5009E1797F03F8D0

12
.editorconfig Normal file
View File

@ -0,0 +1,12 @@
# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# editorconfig.org
root = true
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true