From a27c4156d9de8f28180046bb134033e56325b2db Mon Sep 17 00:00:00 2001 From: Simon Cornet Date: Wed, 27 May 2026 14:24:22 +0200 Subject: [PATCH] chore: add .editorconfig and .gitattributes --- .editorconfig | 18 ++++++++++++++++++ .gitattributes | 1 + 2 files changed, 19 insertions(+) create mode 100644 .editorconfig create mode 100644 .gitattributes diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..c33f4d4 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,18 @@ +root = true + +[*] +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true +charset = utf-8 +indent_style = space +indent_size = 2 + +[*.go] +indent_style = tab + +[Makefile] +indent_style = tab + +[*.md] +trim_trailing_whitespace = false diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..6313b56 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +* text=auto eol=lf