From 561f8c19af0859b461146fd9f8f2af22574c0c4d Mon Sep 17 00:00:00 2001 From: Robin Jarry Date: Thu, 20 Jan 2022 21:04:15 +0100 Subject: [PATCH] Add .editorconfig file Most of the go source files Signed-off-by: Robin Jarry --- .editorconfig | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..a250a2d --- /dev/null +++ b/.editorconfig @@ -0,0 +1,20 @@ +# -*- mode: ini; -*- +# ex: ft=dosini + +root = true + +[*] +end_of_line = lf +insert_final_newline = true +charset = utf-8 + +[**.go] +indent_style = tab +max_line_length = 100 +tab_width = 4 + +[Makefile] +indent_style = tab + +[**.scd] +indent_style = tab