From 8fc011346539671654f61198f8bbbabd273b3079 Mon Sep 17 00:00:00 2001 From: Tim Crawford Date: Mon, 21 Sep 2020 18:03:33 -0600 Subject: [PATCH] Add .editorconfig --- .editorconfig | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..cec4693 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,20 @@ +# EditorConfig: https://editorconfig.org/ + +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 4 +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true + +[*.md] +trim_trailing_whitespace = false + +[*.mk] +indent_style = tab + +[Makefile] +indent_style = tab