editorconfig: init

Add a barebones `.editorconfig` to at least trim whitspaces and enforce some minimal norms
This commit is contained in:
Janik Haag 2024-07-12 19:37:52 +02:00
parent 254e161c07
commit 13c50217da
No known key found for this signature in database

7
.editorconfig Normal file
View file

@ -0,0 +1,7 @@
root = true
[*]
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
charset = utf-8