Newer
Older
Karel van Klink
committed
; Allow >> on newline (W503), and allow cls as first argument for pydantic validators (B902)
ignore = B902,W503
exclude = .git,.*_cache,.eggs,*.egg-info,__pycache__,venv,.tox,gso/migrations,docs
enable-extensions = G
select = B,C,D,E,F,G,I,N,S,T,W,B902,B903,R
max-line-length = 120
ban-relative-imports = true
passenv = DATABASE_URI_TEST,SKIP_ALL_TESTS
isort -c .
ruff .
black --check .
mypy .
flake8
coverage run --source gso -m pytest {posargs}