From cf19fb130e03f0163ab97f89979db2678dbc921c Mon Sep 17 00:00:00 2001 From: Patrick Steinhardt Date: Fri, 6 Sep 2024 07:02:45 +0200 Subject: [PATCH] Add editorconfig configuration Add editorconfig configuration such that many editors will know about our coding style. --- .editorconfig | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..aa343a4 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +root = true + +[*] +charset = utf-8 +insert_final_newline = true + +[*.{c,h}] +indent_style = tab +tab_width = 8 + +[CMakeLists.txt] +indent_style = tab +tab_width = 8