From 87e1e608cc74504d2dee0d0139d5c5f4a9ab8966 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Sat, 23 Mar 2024 13:43:51 +0100 Subject: [PATCH] Add .editorconfig Signed-off-by: Drew DeVault Fixes: https://codeberg.org/redict/redict/issues/17 --- .editorconfig | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..cb302d046 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,10 @@ +root = true + +[*] +end_of_line = lf +insert_final_newline = true +charset = utf-8 +trim_trailing_whitespace = true +indent_style = space +indent_size = 4 +max_line_length = 80