From b2e02d202a0f7999a45562d538a642016326a35c Mon Sep 17 00:00:00 2001 From: Marc Hartmayer Date: Tue, 25 Jan 2022 15:14:45 +0000 Subject: [PATCH] Add EditorConfig configuration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit EditorConfig (https://editorconfig.org/) defines a file format for defining coding styles. The most common editor do either provide native support or via plugin support for EditorConfig. This patch adds an EditorConfig configuration for s390-tools. Acked-by: Jan Höppner Signed-off-by: Marc Hartmayer Signed-off-by: Jan Höppner --- .editorconfig | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..fe1e9176 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +# Check https://editorconfig.org for details + +root = true + +[*] +end_of_line = lf +insert_final_newline = true +charset = utf-8 +indent_style = tab +tab_width = 8 + +[*.sh] +shell_variant = bash # used by `shfmt`