From 5295661f08a70b389169c4832c578e23108a4e4a Mon Sep 17 00:00:00 2001 From: ffranr Date: Tue, 9 Dec 2025 12:44:55 +0000 Subject: [PATCH] add .editorconfig --- .editorconfig | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..110b5c21 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,16 @@ +# EditorConfig is awesome: https://EditorConfig.org + +# Top-most EditorConfig file. +root = true + +# Unix-style newlines with a newline ending every file. +[*.md] +end_of_line = lf +insert_final_newline = true +max_line_length = 80 + +# 8 space indentation for Golang code. +[*.go] +indent_style = tab +indent_size = 8 +max_line_length = 80