From c8b199016783096ee834307f866596eead297b4a Mon Sep 17 00:00:00 2001 From: Albert Krewinkel Date: Tue, 1 Oct 2024 14:19:03 +0200 Subject: [PATCH] Add .editorconfig --- .editorconfig | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..1bf6da4 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,18 @@ +root = true + +[*] +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true +max_line_length = 80 +indent_style = space +indent_size = 2 + +[Makefile] +indent_style = tab + +[*.md] +# Text with 60 to 66 characters per line is said to be the easiest +# to read. +max_line_length = 66