From ee71eb28c4ea7986cfd86cd00a9cd30cd058669a Mon Sep 17 00:00:00 2001 From: David Steele Date: Sun, 24 Jan 2021 16:27:00 -0500 Subject: [PATCH] Add .editorconfig to help enforce project style. --- .editorconfig | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..1d12763eb --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +root = true + +[*] +indent_style = space +indent_size = 4 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[Makefile.in] +indent_style = tab +indent_size = 4