19 lines
242 B
Text
19 lines
242 B
Text
# Exclude everything by default
|
|
*
|
|
|
|
# Allow specific files
|
|
!.gitignore
|
|
!README.md
|
|
!*.py
|
|
!requirements.txt
|
|
!LICENSE
|
|
|
|
# Explicitly exclude sensitive/output files (redundant but clear)
|
|
*.pdf
|
|
*.xlsx
|
|
*.xls
|
|
*.csv
|
|
*.json
|
|
__pycache__/
|
|
*.pyc
|
|
.DS_Store
|