Skip to content

Commit 1ca4eba

Browse files
authored
Merge pull request #109 from andthum/chore/gitignore
Fix Wrong Glob Patterns in `.gitignore` and `settings.json`
2 parents 6ba2026 + d10098f commit 1ca4eba

File tree

2 files changed

+20
-10
lines changed

2 files changed

+20
-10
lines changed

.gitignore

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ build/
6161
develop-eggs/
6262
dist/
6363
downloads/
64-
.?eggs/
64+
eggs/
65+
.eggs/
6566
lib/
6667
lib64/
6768
parts/
@@ -176,10 +177,14 @@ celerybeat.pid
176177
*.sage.py
177178

178179
# Virtual Python environments
179-
.?ENV*/
180-
.?env*/
181-
.?VENV*/
182-
.?venv*/
180+
.ENV*/
181+
.env*/
182+
.VENV*/
183+
.venv*/
184+
ENV*/
185+
env*/
186+
VENV*/
187+
venv*/
183188

184189
# Spyder project settings
185190
.spyderproject

.vscode/settings.json

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,8 @@
9696
"**/.Python": true,
9797
"**/develop-eggs/": true,
9898
"**/dist/": true,
99-
"**/.?eggs/": true,
99+
"**/eggs/": true,
100+
"**/.eggs/": true,
100101
"**/lib64/": true,
101102
"**/sdist/": true,
102103
"**/wheels/": true,
@@ -119,10 +120,14 @@
119120
// PEP 582.
120121
"**/__pypackages__/": true,
121122
// Virtual Python environments.
122-
"**/.?ENV*/": true,
123-
"**/.?env*/": true,
124-
"**/.?VENV*/": true,
125-
"**/.?venv*/": true,
123+
"**/.ENV*/": true,
124+
"**/.env*/": true,
125+
"**/.VENV*/": true,
126+
"**/.venv*/": true,
127+
"**/ENV*/": true,
128+
"**/env*/": true,
129+
"**/VENV*/": true,
130+
"**/venv*/": true,
126131
// mypy.
127132
"**/.mypy_cache/": true,
128133
},

0 commit comments

Comments
 (0)