update gitignore remove clutter
This commit is contained in:
75
.gitignore
vendored
Normal file
75
.gitignore
vendored
Normal file
@@ -0,0 +1,75 @@
|
||||
# IDE / Editor folders
|
||||
.vs/
|
||||
.idea/
|
||||
.vscode/
|
||||
*.swp
|
||||
*.swo
|
||||
|
||||
# Python cache / build
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*.pyo
|
||||
*.pyd
|
||||
*.pdb
|
||||
*.egg-info/
|
||||
*.egg
|
||||
.eggs/
|
||||
build/
|
||||
dist/
|
||||
pip-wheel-metadata/
|
||||
.mypy_cache/
|
||||
.pytest_cache/
|
||||
.tox/
|
||||
.coverage
|
||||
*.coverage
|
||||
coverage.xml
|
||||
htmlcov/
|
||||
|
||||
# Virtual environments
|
||||
.env
|
||||
.venv
|
||||
env/
|
||||
venv/
|
||||
ENV/
|
||||
|
||||
# OS-specific
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
desktop.ini
|
||||
Icon?
|
||||
ehthumbs.db
|
||||
|
||||
# Logs / misc
|
||||
*.log
|
||||
*.tmp
|
||||
*.bak
|
||||
*.orig
|
||||
*.rej
|
||||
|
||||
# Jupyter / notebooks
|
||||
.ipynb_checkpoints
|
||||
*.ipynb~
|
||||
|
||||
# C / C++ / Rust builds (if you use extensions)
|
||||
*.o
|
||||
*.so
|
||||
*.a
|
||||
*.out
|
||||
target/
|
||||
|
||||
# Node (in case of frontend or tooling)
|
||||
node_modules/
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
.pnp/
|
||||
.pnp.js
|
||||
|
||||
# JetBrains extra
|
||||
*.iml
|
||||
out/
|
||||
|
||||
# Other tools
|
||||
.pyre/
|
||||
.dmypy.json
|
||||
.pytype/
|
||||
Reference in New Issue
Block a user