From 78415a838a8e4386539d5a1f69cb72d0591d2e2e Mon Sep 17 00:00:00 2001 From: MichalPetryka <35800402+MichalPetryka@users.noreply.github.com> Date: Thu, 18 Feb 2021 02:49:18 +0100 Subject: [PATCH] Add .editorconfig (#394) --- .editorconfig | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..88a2e5b --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +# EditorConfig info: https://editorconfig.org/ +root = true + +[Makefile*] +indent_style = tab + +[*.{c,cpp,h,cxx,hxx}] +indent_style = space +indent_size = 4 +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true +max_line_length = 120 -- 2.43.0