Add .editorconfig

Add `.editorconfig` with sensible defaults.

Many editors understand editorconfig, and the most important one
here is IntelliJ IDEA which does not insert file trailing newline
by default, but does it out of box this provided `.editorconfig`.
This commit is contained in:
Stiopa Koltsov
2021-03-01 02:40:47 +00:00
committed by Taiki Endo
parent 9db5a3fdd7
commit 6213515611
+6
View File
@@ -0,0 +1,6 @@
[*.rs]
end_of_line = lf
insert_final_newline = true
charset = utf-8
indent_style = space
indent_size = 4