From 769d443581a3dadd5d2aee4e179251d7288bb645 Mon Sep 17 00:00:00 2001 From: Lars Eggert Date: Tue, 8 Dec 2015 14:43:50 +0000 Subject: [PATCH] Add an .editorconfig file, so we can have some consistency in the project. (I don't care what settings we use, as long as we all use the same.) - Legacy-Id: 10551 --- .editorconfig | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..fcf70820d --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +# EditorConfig helps developers define and maintain consistent +# coding styles between different editors and IDEs +# editorconfig.org + +root = true + +# Settings for IETF datatracker + +[*] +indent_style = space +indent_size = 2 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = false +insert_final_newline = true