Consolidate ignores: merge src/.gitignore into top-level .gitignore and remove src/.gitignore
This commit is contained in:
71
.gitignore
vendored
71
.gitignore
vendored
@@ -1,3 +1,4 @@
|
|||||||
|
|
||||||
# .gitignore for infoscreen-dev workspace
|
# .gitignore for infoscreen-dev workspace
|
||||||
# Ignore common python and workspace artifacts while keeping source files tracked
|
# Ignore common python and workspace artifacts while keeping source files tracked
|
||||||
|
|
||||||
@@ -62,3 +63,73 @@ dist/
|
|||||||
# Misc
|
# Misc
|
||||||
*.bak
|
*.bak
|
||||||
*.old
|
*.old
|
||||||
|
|
||||||
|
## Additional patterns merged from src/.gitignore
|
||||||
|
# C extensions
|
||||||
|
*.so
|
||||||
|
|
||||||
|
# Distribution / packaging (additional common entries)
|
||||||
|
.Python
|
||||||
|
develop-eggs/
|
||||||
|
downloads/
|
||||||
|
eggs/
|
||||||
|
.eggs/
|
||||||
|
lib/
|
||||||
|
lib64/
|
||||||
|
parts/
|
||||||
|
sdist/
|
||||||
|
var/
|
||||||
|
*.egg
|
||||||
|
MANIFEST
|
||||||
|
.installed.cfg
|
||||||
|
|
||||||
|
# Additional virtualenv backups
|
||||||
|
env.bak/
|
||||||
|
venv.bak/
|
||||||
|
|
||||||
|
# Jupyter Notebook checkpoints
|
||||||
|
.ipynb_checkpoints/
|
||||||
|
|
||||||
|
# Devcontainer settings
|
||||||
|
.devcontainer/
|
||||||
|
|
||||||
|
# Docker override
|
||||||
|
docker-compose.override.yml
|
||||||
|
|
||||||
|
# Unit test / coverage extras
|
||||||
|
.tox/
|
||||||
|
.nox/
|
||||||
|
.coverage.*
|
||||||
|
.cache
|
||||||
|
nosetests.xml
|
||||||
|
coverage.xml
|
||||||
|
*.cover
|
||||||
|
*.py,cover
|
||||||
|
.hypothesis/
|
||||||
|
|
||||||
|
# Type checker caches
|
||||||
|
.mypy_cache/
|
||||||
|
.dmypy.json
|
||||||
|
.pyre/
|
||||||
|
|
||||||
|
# Profiling data
|
||||||
|
.prof
|
||||||
|
|
||||||
|
# CSV/Excel/other data files
|
||||||
|
*.csv
|
||||||
|
*.tsv
|
||||||
|
*.xls
|
||||||
|
*.xlsx
|
||||||
|
|
||||||
|
# Own modifications and runtime files inside src
|
||||||
|
current_event.json
|
||||||
|
last_event.json
|
||||||
|
simclient.log*
|
||||||
|
config/
|
||||||
|
presentation/
|
||||||
|
screenshots/
|
||||||
|
logs/
|
||||||
|
|
||||||
|
# Safety: ensure nested git backups are not re-added
|
||||||
|
.git.legacy_backup*
|
||||||
|
|
||||||
|
|||||||
96
src/.gitignore
vendored
96
src/.gitignore
vendored
@@ -1,96 +0,0 @@
|
|||||||
# Byte-compiled / optimized / DLL files
|
|
||||||
__pycache__/
|
|
||||||
*.py[cod]
|
|
||||||
*$py.class
|
|
||||||
|
|
||||||
# C extensions
|
|
||||||
*.so
|
|
||||||
|
|
||||||
# Distribution / packaging
|
|
||||||
.Python
|
|
||||||
env/
|
|
||||||
build/
|
|
||||||
develop-eggs/
|
|
||||||
dist/
|
|
||||||
downloads/
|
|
||||||
eggs/
|
|
||||||
.eggs/
|
|
||||||
lib/
|
|
||||||
lib64/
|
|
||||||
parts/
|
|
||||||
sdist/
|
|
||||||
var/
|
|
||||||
*.egg-info/
|
|
||||||
.installed.cfg
|
|
||||||
*.egg
|
|
||||||
MANIFEST
|
|
||||||
|
|
||||||
# Virtual environments
|
|
||||||
venv/
|
|
||||||
ENV/
|
|
||||||
env.bak/
|
|
||||||
venv.bak/
|
|
||||||
|
|
||||||
# Jupyter Notebook checkpoints
|
|
||||||
.ipynb_checkpoints
|
|
||||||
|
|
||||||
# VS Code settings
|
|
||||||
.vscode/
|
|
||||||
|
|
||||||
# Devcontainer settings
|
|
||||||
.devcontainer/
|
|
||||||
|
|
||||||
# Docker
|
|
||||||
*.log
|
|
||||||
docker-compose.override.yml
|
|
||||||
|
|
||||||
# Unit test / coverage reports
|
|
||||||
htmlcov/
|
|
||||||
.tox/
|
|
||||||
.nox/
|
|
||||||
.coverage
|
|
||||||
.coverage.*
|
|
||||||
.cache
|
|
||||||
nosetests.xml
|
|
||||||
coverage.xml
|
|
||||||
*.cover
|
|
||||||
*.py,cover
|
|
||||||
.hypothesis/
|
|
||||||
.pytest_cache/
|
|
||||||
|
|
||||||
# mypy
|
|
||||||
.mypy_cache/
|
|
||||||
.dmypy.json
|
|
||||||
|
|
||||||
# Pyre type checker
|
|
||||||
.pyre/
|
|
||||||
|
|
||||||
# Profiling data
|
|
||||||
.prof
|
|
||||||
|
|
||||||
# CSV/Excel/other data files
|
|
||||||
*.csv
|
|
||||||
*.tsv
|
|
||||||
*.xls
|
|
||||||
*.xlsx
|
|
||||||
|
|
||||||
# Misc
|
|
||||||
*.swp
|
|
||||||
*.swo
|
|
||||||
*.bak
|
|
||||||
*.tmp
|
|
||||||
|
|
||||||
# System files
|
|
||||||
.DS_Store
|
|
||||||
Thumbs.db
|
|
||||||
|
|
||||||
# own modifications
|
|
||||||
.env
|
|
||||||
sync.ffs_db
|
|
||||||
config/
|
|
||||||
presentation/
|
|
||||||
screenshots/
|
|
||||||
logs/
|
|
||||||
simclient.log*
|
|
||||||
current_event.json
|
|
||||||
last_event.json
|
|
||||||
Reference in New Issue
Block a user