From 7e49c4d73d2065c1d44818987f0405318155a0f6 Mon Sep 17 00:00:00 2001 From: Lucien Cartier-Tilet Date: Sat, 14 May 2022 19:41:34 +0200 Subject: [PATCH] Add editorconfig This ensures all text editors and IDEs share the same basic config when editing the source code of Rose. Addition of a clang-format file should also be considered. --- .editorconfig | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..4be7de2 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,12 @@ +root = true + +[*] +indent_style = tab +charset = utf-8 +end_of_line = lf +trim_trailing_whitespace = true +insert_final_newline = true + +[*.md] +charset = utf-8 +trim_trailing_whitespace = true