From 7bc8ee99250b84102473a58dd3c0c90477ddf472 Mon Sep 17 00:00:00 2001
From: Brandon Rodriguez <brodriguez8774@gmail.com>
Date: Thu, 11 Mar 2021 19:32:13 -0500
Subject: [PATCH] Add missing editorconfig and gitignore files

---
 .editorconfig | 37 +++++++++++++++++++++++++++++++++++++
 .gitignore    | 46 ++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 83 insertions(+)
 create mode 100644 .editorconfig
 create mode 100644 .gitignore

diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 0000000..21b855f
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,37 @@
+###
+ # EditorConfig file for Bash Script Language projects.
+ # See https://editorconfig.org/ for documentation.
+ #
+ # https://git.brandon-rodriguez.com/other/editorconfig
+ # Version 1.0
+ ##
+
+
+# Stop editorconfig from searching further above current directory.
+root = true
+
+
+###
+ # Default styles for all files.
+ ##
+[*]
+charset = utf-8
+end_of_line = lf
+indent_style = space
+insert_final_newline = true
+trim_trailing_whitespace = true
+
+
+###
+ # Tab styles that should be four spaces per tab.
+ # Most languages will fall under this.
+ ##
+[*.sh]
+indent_size = 4
+
+
+###
+ # Tab styles that should be two spaces per tab.
+ # Only very nested languages should be put here.
+ ##
+# None so far.
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..fb86083
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,46 @@
+###
+ # General GitIgnore file for projects.
+ # See https://git-scm.com/docs/gitignore for documentation.
+ #
+ # https://git.brandon-rodriguez.com/other/gitignore
+ # Version 1.0
+ ##
+
+
+# Ignore system files.
+.DS_Store
+Thumbs.db
+
+
+# Ignore environment settings.
+.env/
+.idea/
+.venv/
+.vs/
+.vscode/
+env/
+idea/
+venv/
+vs/
+vscode/
+
+
+# Ignore temporary files.
+[Tt]mp/
+[Tt]emp/
+[Tt]empfiles/
+[Tt]emp_files/
+*.tmp
+*.temp
+
+
+# Ignore logfiles.
+[Ll]og/
+[Ll]ogs/
+*.log
+*.log.*
+
+
+###
+ # Project-specific ignores go below here.
+ ##
-- 
GitLab