From 6226f533afb8d3fb3523fa44d5c5c1262bbcb331 Mon Sep 17 00:00:00 2001 From: "Anna (navi) Figueiredo Gomes" Date: Wed, 14 Aug 2024 16:34:42 +0200 Subject: [PATCH] Add a .editorconfig file. --- .editorconfig | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..f196f6ef --- /dev/null +++ b/.editorconfig @@ -0,0 +1,16 @@ +# https://editorconfig.org/ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_style = space +indent_size = 4 +tab_width = 8 +trim_trailing_whitespace = true +max_line_length = 120 +insert_final_newline = true + +[Makefile*] +indent_style = tab +indent_size = 8