From b744dfbd5bd0d5d660f252c79d5147e4d671a6ef Mon Sep 17 00:00:00 2001 From: Carlos Alexandro Becker Date: Mon, 1 Jan 2024 22:22:51 -0300 Subject: [PATCH] chore: add .editorconfig --- .editorconfig | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..e02b604 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,16 @@ +root = true + +[*] +end_of_line = lf +indent_size = 4 +indent_style = tab +insert_final_newline = true +trim_trailing_whitespace = true +insert_final_newline = true +charset = utf-8 + +[*.{md,yml,yaml}] +indent_size = 2 +indent_style = space + +