From 2b61141c195a15903ddbd93e93844c2270cc088b Mon Sep 17 00:00:00 2001
From: Dan Schultz <slifty@gmail.com>
Date: Thu, 10 Feb 2022 15:49:07 -0500
Subject: [PATCH] Add .editorconfig

Editorconfig is a standard that helps editors know what whitespace rules
to follow for a given project.

For more information, see:

https://editorconfig.org/

These rules were determined based on feedback from project maintainers.

There are some files that use different numbers of spaces, but these
files were imposed on the project externally.  We use 4 everywhere we
touch.

Issue #2716
---
 .editorconfig | 9 +++++++++
 1 file changed, 9 insertions(+)
 create mode 100644 .editorconfig

diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 000000000..677e36e29
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,9 @@
+root = true
+
+[*]
+charset = utf-8
+end_of_line = lf
+indent_size = 4
+indent_style = space
+insert_final_newline = true
+trim_trailing_whitespace = true
-- 
GitLab