SDL_shader_tools: Add .editorconfig

From 7cf9a30dde6c2ac6c23b948c7e3e3bd5efa04dff Mon Sep 17 00:00:00 2001
From: Anonymous Maarten <[EMAIL REDACTED]>
Date: Tue, 22 Nov 2022 21:01:25 +0100
Subject: [PATCH] Add .editorconfig

---
 .editorconfig | 15 +++++++++++++++
 1 file changed, 15 insertions(+)
 create mode 100644 .editorconfig

diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 0000000..2ef43c1
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,15 @@
+# For format see editorconfig.org
+# SPDX-License-Identifier: Zlib
+
+root = true
+
+[*]
+indent_size = 4
+indent_style = space
+insert_final_newline = true
+trim_trailing_whitespace = true
+
+[{Makefile.*,*.mk}]
+indent_size = 8
+indent_style = tab
+tab_width = 8