From bffe18d204dfc5f208c8b0591ac1139cdf277af2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20CORTIER?= Date: Tue, 9 Apr 2024 23:37:30 +0900 Subject: [PATCH] chore(dotnet): add EditorConfig file --- ffi/dotnet/.editorconfig | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 ffi/dotnet/.editorconfig diff --git a/ffi/dotnet/.editorconfig b/ffi/dotnet/.editorconfig new file mode 100644 index 00000000..6e352c78 --- /dev/null +++ b/ffi/dotnet/.editorconfig @@ -0,0 +1,12 @@ +root = true + +# Indentation and spacing +indent_size = 4 +tab_width = 4 + +# New line preferences +end_of_line = lf +insert_final_newline = false + +[src/Picky/Generated/*.cs] +generated_code = true