mirror of
https://github.com/cyclotruc/gitingest.git
synced 2026-04-26 14:10:47 +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/
|
||||
|
|
|
|||
183
.gitignore
vendored
183
.gitignore
vendored
|
|
@ -1,153 +1,40 @@
|
|||
# Byte-compiled / optimized / DLL files
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
|
||||
# C extensions
|
||||
*.so
|
||||
|
||||
# Distribution / packaging
|
||||
.Python
|
||||
build/
|
||||
develop-eggs/
|
||||
dist/
|
||||
downloads/
|
||||
eggs/
|
||||
.eggs/
|
||||
lib/
|
||||
lib64/
|
||||
parts/
|
||||
sdist/
|
||||
var/
|
||||
wheels/
|
||||
share/python-wheels/
|
||||
*.egg-info/
|
||||
.installed.cfg
|
||||
*.egg
|
||||
MANIFEST
|
||||
|
||||
tmp/*
|
||||
|
||||
# PyInstaller
|
||||
# Usually these files are written by a python script from a template
|
||||
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
||||
*.manifest
|
||||
*.spec
|
||||
|
||||
# Installer logs
|
||||
pip-log.txt
|
||||
pip-delete-this-directory.txt
|
||||
|
||||
# Unit test / coverage reports
|
||||
htmlcov/
|
||||
.tox/
|
||||
.nox/
|
||||
.coverage
|
||||
.coverage.*
|
||||
.cache
|
||||
nosetests.xml
|
||||
coverage.xml
|
||||
*.cover
|
||||
*.py,cover
|
||||
.hypothesis/
|
||||
.pytest_cache/
|
||||
cover/
|
||||
|
||||
# Translations
|
||||
*.mo
|
||||
*.pot
|
||||
|
||||
# Django stuff:
|
||||
*.log
|
||||
local_settings.py
|
||||
db.sqlite3
|
||||
db.sqlite3-journal
|
||||
|
||||
# Flask stuff:
|
||||
instance/
|
||||
.webassets-cache
|
||||
|
||||
# Scrapy stuff:
|
||||
.scrapy
|
||||
|
||||
# Sphinx documentation
|
||||
docs/_build/
|
||||
|
||||
# PyBuilder
|
||||
.pybuilder/
|
||||
target/
|
||||
|
||||
# Jupyter Notebook
|
||||
.ipynb_checkpoints
|
||||
|
||||
# IPython
|
||||
profile_default/
|
||||
ipython_config.py
|
||||
|
||||
# pdm
|
||||
.pdm.toml
|
||||
.pdm-python
|
||||
.pdm-build/
|
||||
|
||||
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
||||
__pypackages__/
|
||||
|
||||
# Celery stuff
|
||||
celerybeat-schedule
|
||||
celerybeat.pid
|
||||
|
||||
# SageMath parsed files
|
||||
*.sage.py
|
||||
|
||||
# Environments
|
||||
.env
|
||||
.venv
|
||||
.venv*
|
||||
env/
|
||||
venv/
|
||||
ENV/
|
||||
env.bak/
|
||||
venv.bak/
|
||||
.python-version
|
||||
|
||||
# Spyder project settings
|
||||
.spyderproject
|
||||
.spyproject
|
||||
|
||||
# Rope project settings
|
||||
.ropeproject
|
||||
|
||||
# mkdocs documentation
|
||||
/site
|
||||
|
||||
# mypy
|
||||
.mypy_cache/
|
||||
.dmypy.json
|
||||
dmypy.json
|
||||
|
||||
# Pyre type checker
|
||||
.pyre/
|
||||
|
||||
# pytype static type analyzer
|
||||
.pytype/
|
||||
|
||||
# Cython debug symbols
|
||||
cython_debug/
|
||||
|
||||
# VSCode
|
||||
.vscode/settings.json
|
||||
# Operating-system
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# JavaScript tooling
|
||||
node_modules/
|
||||
# Editor / IDE settings
|
||||
.vscode/
|
||||
!.vscode/launch.json
|
||||
.idea/
|
||||
*.swp
|
||||
|
||||
# Project specific
|
||||
# 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
|
||||
cleanup.py
|
||||
Caddyfile
|
||||
|
||||
# ignore default output directory
|
||||
tmp/*
|
||||
|
||||
# Gitingest
|
||||
digest.txt
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue