From addf5317dc81e453227a81a038dfd8fb8565df88 Mon Sep 17 00:00:00 2001 From: Michele Campeotto Date: Tue, 5 Nov 2024 10:12:26 +0100 Subject: [PATCH] added editor config settings unfortunately Xcode doesn't support an editorconfig setting for indenting case labels, which this project is using. --- .editorconfig | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..0957abb --- /dev/null +++ b/.editorconfig @@ -0,0 +1,8 @@ +[*] +indent_style = space +indent_size = 2 +tab_width = 8 +max_line_length = 80 +trim_trailing_whitespace = false +end_of_line = lf +insert_final_newline = true