From 220571de872c2112a59c050caa2d6fa5c1cf5f0b Mon Sep 17 00:00:00 2001
From: Brandon Rodriguez <brodriguez8774@gmail.com>
Date: Mon, 12 Oct 2020 08:24:59 -0400
Subject: [PATCH] Update gitignore

---
 .gitignore | 43 ++++++++++++++++++++++++++++++++++---------
 1 file changed, 34 insertions(+), 9 deletions(-)

diff --git a/.gitignore b/.gitignore
index 1dfbf9f..21ea9d5 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,21 +1,46 @@
+###
+ # GitIgnore file for Python Language projects.
+ # See https://git-scm.com/docs/gitignore for documentation.
+ #
+ # https://git.brandon-rodriguez.com/other/gitignore
+ # Version 1.1
+ ##
 
-# Do not track local environment settings/solution.
-.venv/
-.vscode/
+
+# Ignore environment settings.
+.env/
 .idea/
+.venv/
 .vs/
+.vscode/
 env/
+idea/
+venv/
+vs/
+vscode/
+
 
-# Do not track python cache files.
+# Ignore python cache files.
 *.pyc
 
 
-# Do not track auto-generated files.
-.~lock.*
-*.aux
-*.synctex.gz
+# 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.*
+
+
+# Ignore generated LaTeX files.
+.~lock.*
+*.aux
+*.synctex
+*.synctex.gz
-- 
GitLab