chore: switch .gitignore to whitelist mechanism (only .py, .md, .gitignore)
This commit is contained in:
parent
0018868ee3
commit
6b26ec33ab
|
|
@ -1,10 +1,10 @@
|
||||||
__pycache__/
|
# Ignore everything by default
|
||||||
*.pyc
|
*
|
||||||
*.pyo
|
|
||||||
.venv/
|
# Recurse into directories
|
||||||
venv/
|
!*/
|
||||||
*.egg-info/
|
|
||||||
dist/
|
# Whitelist: only source code and docs
|
||||||
build/
|
!*.py
|
||||||
output/
|
!*.md
|
||||||
.DS_Store
|
!.gitignore
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue