Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 10 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ build/
develop-eggs/
dist/
downloads/
.?eggs/
eggs/
.eggs/
lib/
lib64/
parts/
Expand Down Expand Up @@ -176,10 +177,14 @@ celerybeat.pid
*.sage.py

# Virtual Python environments
.?ENV*/
.?env*/
.?VENV*/
.?venv*/
.ENV*/
.env*/
.VENV*/
.venv*/
ENV*/
env*/
VENV*/
venv*/

# Spyder project settings
.spyderproject
Expand Down
15 changes: 10 additions & 5 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,8 @@
"**/.Python": true,
"**/develop-eggs/": true,
"**/dist/": true,
"**/.?eggs/": true,
"**/eggs/": true,
"**/.eggs/": true,
"**/lib64/": true,
"**/sdist/": true,
"**/wheels/": true,
Expand All @@ -119,10 +120,14 @@
// PEP 582.
"**/__pypackages__/": true,
// Virtual Python environments.
"**/.?ENV*/": true,
"**/.?env*/": true,
"**/.?VENV*/": true,
"**/.?venv*/": true,
"**/.ENV*/": true,
"**/.env*/": true,
"**/.VENV*/": true,
"**/.venv*/": true,
"**/ENV*/": true,
"**/env*/": true,
"**/VENV*/": true,
"**/venv*/": true,
// mypy.
"**/.mypy_cache/": true,
},
Expand Down