Spaces:
Running
Running
add gitignore
Browse files- .gitignore +73 -0
.gitignore
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Byte-compiled / optimized / DLL files
|
| 2 |
+
__pycache__/
|
| 3 |
+
*.py[cod]
|
| 4 |
+
*$py.class
|
| 5 |
+
|
| 6 |
+
# C extensions
|
| 7 |
+
*.so
|
| 8 |
+
|
| 9 |
+
# Distribution / packaging
|
| 10 |
+
.Python
|
| 11 |
+
build/
|
| 12 |
+
develop-eggs/
|
| 13 |
+
dist/
|
| 14 |
+
downloads/
|
| 15 |
+
eggs/
|
| 16 |
+
.eggs/
|
| 17 |
+
lib/
|
| 18 |
+
lib64/
|
| 19 |
+
parts/
|
| 20 |
+
sdist/
|
| 21 |
+
var/
|
| 22 |
+
*.egg-info/
|
| 23 |
+
.installed.cfg
|
| 24 |
+
*.egg
|
| 25 |
+
|
| 26 |
+
# Installer logs
|
| 27 |
+
pip-log.txt
|
| 28 |
+
pip-delete-this-directory.txt
|
| 29 |
+
|
| 30 |
+
# Unit test / coverage reports
|
| 31 |
+
htmlcov/
|
| 32 |
+
.tox/
|
| 33 |
+
.nox/
|
| 34 |
+
.coverage
|
| 35 |
+
.coverage.*
|
| 36 |
+
.cache
|
| 37 |
+
nosetests.xml
|
| 38 |
+
coverage.xml
|
| 39 |
+
*.cover
|
| 40 |
+
.hypothesis/
|
| 41 |
+
.pytest_cache/
|
| 42 |
+
|
| 43 |
+
# Jupyter Notebook
|
| 44 |
+
.ipynb_checkpoints
|
| 45 |
+
|
| 46 |
+
# pyenv
|
| 47 |
+
.python-version
|
| 48 |
+
|
| 49 |
+
# mypy
|
| 50 |
+
.mypy_cache/
|
| 51 |
+
.dmypy.json
|
| 52 |
+
dmypy.json
|
| 53 |
+
|
| 54 |
+
# VS Code
|
| 55 |
+
.vscode/
|
| 56 |
+
|
| 57 |
+
# Streamlit
|
| 58 |
+
.streamlit/
|
| 59 |
+
|
| 60 |
+
# Docker
|
| 61 |
+
*.env
|
| 62 |
+
.env.*
|
| 63 |
+
|
| 64 |
+
# System files
|
| 65 |
+
.DS_Store
|
| 66 |
+
Thumbs.db
|
| 67 |
+
|
| 68 |
+
# Local words directory (if you want to ignore user-added wordlists)
|
| 69 |
+
# battlewords/words/*.txt
|
| 70 |
+
|
| 71 |
+
# Ignore secrets
|
| 72 |
+
secrets.*
|
| 73 |
+
/.vs
|