osmith has submitted this change. ( https://gerrit.osmocom.org/c/erlang/osmo-epdg/+/41166?usp=email )
Change subject: editorconfig: new file ......................................................................
editorconfig: new file
Let editors like vim, neovim and many more automatically indent erl files with 4 spaces as it is done throughout this source tree.
Related: https://editorconfig.org/ Change-Id: Idb35212657f720aba236cb5dcdfa1bef8db9e838 --- A .editorconfig 1 file changed, 8 insertions(+), 0 deletions(-)
Approvals: fixeria: Looks good to me, approved Jenkins Builder: Verified
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..6163852 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,8 @@ +root = true + +[**/*.erl] +indent_size = 4 +indent_style = space +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true