From b20b7aeabdbce1123afce2d3a98add91f272e698 Mon Sep 17 00:00:00 2001 From: Nathan Boiron Date: Thu, 15 Dec 2022 13:54:54 +0100 Subject: [PATCH] misc: add `.editorconfig` file --- .editorconfig | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..8e64ec31 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,19 @@ +# http://editorconfig.org +root = true + +[*] +indent_style = space +indent_size = 4 +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true +end_of_line = LF + +[*.md] +trim_trailing_whitespace = false + +[*.yml] +indent_size = 2 + +[dependabot.yml] +indent_size = 4