From 3b1aa6e4d6ce5fa0a7ae52db19cddece3636dd6c Mon Sep 17 00:00:00 2001
From: Brandon Rodriguez <brodriguez8774@gmail.com>
Date: Mon, 12 Oct 2020 04:05:42 -0400
Subject: [PATCH] Update gitignore

---
 .gitignore | 33 +++++++++++++++++++++++++++------
 1 file changed, 27 insertions(+), 6 deletions(-)

diff --git a/.gitignore b/.gitignore
index 15283cd..428028d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,18 +1,39 @@
-
-# Do not track python cache files.
-*.pyc
+###
+ # GitIgnore file for Python Language projects.
+ # See https://git-scm.com/docs/gitignore for documentation.
+ #
+ # https://git.brandon-rodriguez.com/other/gitignore
+ # Version 1.0.1
+ ##
 
 
-# Do not track local environment settings.
-.idea/
+# Ignore environment settings.
 .env/
+.idea/
 .venv/
 .vs/
 .vscode/
 env/
+idea/
 venv/
+vs/
+vscode/
+
+
+# Ignore python cache files.
+*.pyc
+
+
+# Ignore temporary files.
+[Tt]emp/
+[Tt]empfiles/
+[Tt]emp_files/
+*.tmp
+*.temp
 
 
-# Do not track local environment logs.
+# Ignore logfiles.
+[Ll]og/
+[Ll]ogs/
 *.log
 *.log.*
-- 
GitLab