From 0cfaeedf03f73f427c74184cb08b6779c11bd7d3 Mon Sep 17 00:00:00 2001 From: Adam Spiers Date: Sun, 29 Jun 2025 20:40:32 +0100 Subject: [PATCH] chore: add .editorconfig (#2572) --- .editorconfig | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..0d6a1a36 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +root = true + +[*] +charset = utf-8 +insert_final_newline = true +end_of_line = lf +indent_style = space +indent_size = 2 +max_line_length = 80 + +[Makefile] +indent_style = tab +indent_size = 8