From ababa734887849f5919d44a02ce8070e68882bea Mon Sep 17 00:00:00 2001 From: Davide Casale Date: Tue, 27 Feb 2024 21:36:38 +0100 Subject: [PATCH] Edit .gitignore to exclude more files/folders. --- .flake8 | 4 +++- .gitignore | 22 +++++++++++++--------- 2 files changed, 16 insertions(+), 10 deletions(-) diff --git a/.flake8 b/.flake8 index c257c3b..f7aee5b 100644 --- a/.flake8 +++ b/.flake8 @@ -5,7 +5,9 @@ extend-ignore = E203,E501,E701 exclude = __pycache__ + build dist venv -per-file-ignores = */__init__.py:F401 +per-file-ignores = + */__init__.py:F401 diff --git a/.gitignore b/.gitignore index 1556a49..f0c1f9b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,12 +1,16 @@ +.venv +.DS_Store .vscode -*.pyc -*.log - -bitfinex_api_py.egg-info - +.python-version __pycache__ -dist -venv -!.gitkeep -MANIFEST +bitfinex_api_py.egg-info +bitfinex_api_py.dist-info +build/ +dist/ +pip-wheel-metadata/ +.eggs + +.idea + +venv/