From 18d8ae58beb5121212d13b04ec0e4ff484b4fe06 Mon Sep 17 00:00:00 2001 From: Vojtech Mares Date: Wed, 20 Nov 2024 20:19:11 +0100 Subject: [PATCH] chore: add `.editorconfig` --- .editorconfig | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..87a0020 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +root = true + +[*] +indent_style = space +indent_size = 2 +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true +end_of_line = lf +max_line_length = null + +[Makefile] +indent_style = tab