Edit .gitignore to exclude more files/folders.

This commit is contained in:
Davide Casale
2024-02-27 21:36:38 +01:00
parent 48df3fa6e9
commit ababa73488
2 changed files with 16 additions and 10 deletions

View File

@@ -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

22
.gitignore vendored
View File

@@ -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/