From cd0e4111bcc0332917fb8b829ee32293e452a308 Mon Sep 17 00:00:00 2001 From: Kate Date: Tue, 16 Mar 2021 13:29:38 +0000 Subject: [PATCH] Added pycharm config files to gitignore --- .gitignore | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/.gitignore b/.gitignore index 7188218..890a153 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,54 @@ config.py stonks.txt + +.idea/ + +# dotenv +.env + +# virtualenv +.venv +venv/ +ENV/ + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +.hypothesis/ + +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +env/ +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg \ No newline at end of file