Tobias Pasquale
Fix CI/CD formatting issues - final solution
01d5d1b
raw
history blame
474 Bytes
[flake8]
max-line-length = 88
extend-ignore =
# E203: whitespace before ':' (conflicts with black)
E203,
# W503: line break before binary operator (conflicts with black)
W503
exclude =
venv,
.venv,
__pycache__,
.git,
.pytest_cache
per-file-ignores =
# Allow unused imports in __init__.py files
__init__.py:F401,
# Ignore line length in error_handlers.py due to complex error messages
src/guardrails/error_handlers.py:E501