mirror of
https://github.com/cyclotruc/gitingest.git
synced 2026-04-28 09:39:29 +00:00
cleanup gitignore (#378)
This commit is contained in:
parent
3e83ba3936
commit
bfdc63853a
2 changed files with 102 additions and 183 deletions
102
.dockerignore
102
.dockerignore
|
|
@ -1,40 +1,72 @@
|
|||
# Git
|
||||
.git
|
||||
# -------------------------------------------------
|
||||
# Base: reuse patterns from .gitignore
|
||||
# -------------------------------------------------
|
||||
|
||||
# Operating-system
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# Editor / IDE settings
|
||||
.vscode/
|
||||
!.vscode/launch.json
|
||||
.idea/
|
||||
*.swp
|
||||
|
||||
# Python virtual-envs & tooling
|
||||
.venv*/
|
||||
.python-version
|
||||
__pycache__/
|
||||
*.egg-info/
|
||||
*.egg
|
||||
.ruff_cache/
|
||||
|
||||
# Test artifacts & coverage
|
||||
.pytest_cache/
|
||||
.coverage
|
||||
coverage.xml
|
||||
htmlcov/
|
||||
|
||||
# Build, distribution & docs
|
||||
build/
|
||||
dist/
|
||||
*.wheel
|
||||
|
||||
# Logs & runtime output
|
||||
*.log
|
||||
logs/
|
||||
*.tmp
|
||||
tmp/
|
||||
|
||||
# Project-specific files
|
||||
history.txt
|
||||
digest.txt
|
||||
|
||||
|
||||
# -------------------------------------------------
|
||||
# Extra for Docker
|
||||
# -------------------------------------------------
|
||||
|
||||
# Git history
|
||||
.git/
|
||||
.gitignore
|
||||
|
||||
# Python
|
||||
__pycache__
|
||||
*.pyc
|
||||
*.pyo
|
||||
*.pyd
|
||||
.Python
|
||||
env
|
||||
pip-log.txt
|
||||
pip-delete-this-directory.txt
|
||||
.tox
|
||||
.coverage
|
||||
.coverage.*
|
||||
.cache
|
||||
nosetests.xml
|
||||
coverage.xml
|
||||
*.cover
|
||||
*.log
|
||||
|
||||
# Virtual environment
|
||||
venv
|
||||
.env
|
||||
.venv
|
||||
ENV
|
||||
|
||||
# IDE
|
||||
.idea
|
||||
.vscode
|
||||
*.swp
|
||||
*.swo
|
||||
|
||||
# Project specific
|
||||
docs/
|
||||
# Tests
|
||||
tests/
|
||||
|
||||
# Docs
|
||||
docs/
|
||||
*.md
|
||||
LICENSE
|
||||
setup.py
|
||||
|
||||
# Local overrides & secrets
|
||||
.env
|
||||
|
||||
# Docker files
|
||||
.dockerignore
|
||||
Dockerfile*
|
||||
|
||||
# -------------------------------------------------
|
||||
# Files required during build
|
||||
# -------------------------------------------------
|
||||
!pyproject.toml
|
||||
!src/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue