From 0c1e5a7a3d7fdd94186647b6d7b4aaa71711d420 Mon Sep 17 00:00:00 2001 From: RouxAntoine Date: Wed, 13 Sep 2023 22:52:52 +0200 Subject: [PATCH] feature: add editorconfig file --- .editorconfig | 22 ++++++++++++++++++++++ .gitignore | 1 + 2 files changed, 23 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..46e08cf --- /dev/null +++ b/.editorconfig @@ -0,0 +1,22 @@ +# documentation https://editorconfig.org/ +root = true + +[*] +end_of_line = lf +charset = utf-8 +insert_final_newline = true +max_line_length = 130 +indent_style = space +trim_trailing_whitespace = true +tab_width = 2 +indent_size = 2 + +[{*.java,*.js}] +indent_size = 4 +ij_continuation_indent_size = 4 + +[{*.xml,*.html}] +indent_size = 4 + +[Makefile] +indent_style = tab diff --git a/.gitignore b/.gitignore index 8a896e6..ed368cb 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,7 @@ # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 .idea/ +*.iml # CMake cmake-build-*/