From 2babdba1d7eb925a5bd8c3acc21ab1ab331ab673 Mon Sep 17 00:00:00 2001 From: JoseExposito Date: Fri, 19 Mar 2021 08:37:02 +0100 Subject: [PATCH] tools/code-formatting: Add EditorConfig file MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit EditorConfig helps maintain consistent coding styles for multiple developers working on the same project across various editors and IDEs: https://editorconfig.org/ Signed-off-by: José Expósito --- .editorconfig | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..f7a6d655 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,11 @@ +# https://editorconfig.org/ + +root = true + +[*.{c,h}] +charset = utf-8 +end_of_line = lf +indent_size = 8 +indent_style = tab +insert_final_newline = true +trim_trailing_whitespace = true