From a57290e93b504f5a49566beccb709750f735bcbb Mon Sep 17 00:00:00 2001 From: Christian Oliff Date: Mon, 29 Nov 2021 23:53:25 +0900 Subject: [PATCH] Create .editorconfig Add an `.editorconfig` to help ensure consistent code-formatting for contributors. --- .editorconfig | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..f909307 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +# https://editorconfig.org + +root = true + +[*] +charset = utf-8 +end_of_line = lf +trim_trailing_whitespace = true + +[src/] +indent_size = 4 +indent_style = space +insert_final_newline = true