From 142dfd66ddbace96f599597b31a56d6bf829b8f2 Mon Sep 17 00:00:00 2001 From: Brandon Rodriguez <brodriguez8774@gmail.com> Date: Fri, 9 Oct 2020 07:34:22 -0400 Subject: [PATCH] Update gitignore --- .gitignore | 39 +++++++++++++++++++++++++++++++++++++-- 1 file changed, 37 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index ce99860..105d368 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,38 @@ +### + # GitIgnore file for Python Language projects. + # See https://git-scm.com/docs/gitignore for documentation. + # + # Version 1.0 + ## -# Exclude all generated log files. -resources/logs/* + +# 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 + + +# Ignore logfiles. +[Ll]og/ +[Ll]ogs/ +*.log +*.log.* -- GitLab