From eef1821395e76396a80e6544828fbc4df82536ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cihat=20Gu=CC=88ndu=CC=88z?= Date: Tue, 3 Dec 2024 19:20:48 +0100 Subject: [PATCH] Add editor config file for consistent indentation in Xcode 16+ --- .editorconfig | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..ff41606 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,14 @@ +# EditorConfig is awesome: https://editorconfig.org +root = true + +[*] + +indent_style = space +tab_width = 6 +indent_size = 3 + +end_of_line = lf +insert_final_newline = true + +max_line_length = 160 +trim_trailing_whitespace = true