diff options
| author | Rich Kreider <rjkreider@gmail.com> | 2026-05-20 12:08:15 -0400 |
|---|---|---|
| committer | Rich Kreider <rjkreider@gmail.com> | 2026-05-20 12:08:15 -0400 |
| commit | e0ba9b27116f1d3758be527390b4dcfed09a7a94 (patch) | |
| tree | 404f64e937234b88e5dfc55c2d5388f9f000189d /.gitignore | |
saqauditor initial commit
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1c6e08d --- /dev/null +++ b/.gitignore @@ -0,0 +1,63 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# Virtual Environments +.venv/ +venv/ +ENV/ +env/ +ENV/ local/ +ENV/ lib/ + +# Environment variables and secrets (NEVER commit these) +.env +.yaml +*.env +*.secret + +# Inline documentation / Sphinx +docs/_build/ + +# PyTest / Coverage / Code Analysis +.cache/ +.pytest_cache/ +.htmlcov/ +htmlcov/ +.coverage +.coverage.* +.coveragerc +.mypy_cache/ +.dmypy.json +dmypy.json +.ruff_cache/ + +# IDEs and Editors +.vscode/ +.idea/ +*.swp +*.swo +.DS_Store
\ No newline at end of file |
