diff options
| author | Dawid Rycerz <dawid@rycerz.xyz> | 2025-03-28 20:53:41 +0100 |
|---|---|---|
| committer | Dawid Rycerz <dawid@rycerz.xyz> | 2025-03-28 20:53:41 +0100 |
| commit | 1745749cd2745c94c3f852e9c02dfde19d8d9c20 (patch) | |
| tree | 8ed13f3de5fac78d804124e27fbcf1b678e83253 /.gitignore | |
Fix ruff errors and warnings in hello_world service
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ee7d473 --- /dev/null +++ b/.gitignore @@ -0,0 +1,57 @@ +# Python +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# Virtual environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Testing +.coverage +htmlcov/ +.pytest_cache/ +coverage.xml +*.cover +.hypothesis/ + +# IDE +.idea/ +.vscode/ +*.swp +*.swo +*~ + +# Logs +*.log +logs/ + +# Docker +.dockerignore + +# OS specific +.DS_Store +Thumbs.db |
