From 4a6cdd49110b4f3629280ca13fb828a8c6db21b9 Mon Sep 17 00:00:00 2001 From: Alexandros Kritikos Date: Fri, 6 Jun 2025 17:07:07 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Adds=20common=20editor=20setting?= =?UTF-8?q?s?= 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