From 15c52f016f7b823a9040d508a4e4530fb6162d49 Mon Sep 17 00:00:00 2001 From: Alexandros Kritikos Date: Tue, 18 Mar 2025 23:40:24 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A8=20=20Adds=20.editorconfig=20for=20?= =?UTF-8?q?consistent=20code=20formatting?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .editorconfig | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..245cf42 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,14 @@ +root = true + +[*] +indent_style = space +indent_size = 2 +charset = utf-8 +insert_final_newline = true +trim_trailing_whitespace = true + +[*.sh] +end_of_line = lf + +[**/Migrations/*.cs] +generated_code = true