From 56b51aba3a72a48901c12d6a6a4dd5690c026f90 Mon Sep 17 00:00:00 2001
From: Brandon Rodriguez <brodriguez8774@gmail.com>
Date: Sun, 31 May 2020 23:23:51 -0400
Subject: [PATCH] Import editorconfig

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

diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 0000000..3bbc70a
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,37 @@
+
+#EditorConfig
+http://EditorConfig.org
+
+
+# Top-most EditorConfig File.
+root = true
+
+
+
+# Unix-style newlines with a newline ending every file.
+[*]
+end_of_line = lf
+insert_final_newline = true
+trim_trailing_whitespace = true
+
+
+
+# Set properties for most file types.
+[*.{css,scss,py,js,json,php,jar,c,sh}]
+# Set character encoding
+charset = utf-8
+
+# Set tabbing styles.
+indent_style = space
+indent_size = 4
+
+
+
+# Set properties for html.
+[*.{html,blade.php}]
+# Set character encoding
+charset = utf-8
+
+# Set tabbing styles.
+indent_style = space
+indent_size = 2
-- 
GitLab