gestioCOF/.flake8
Tom Hubrecht d1fe524333
All checks were successful
Run pre-commit on all files / pre-commit (push) Successful in 20s
Run pre-commit on all files / pre-commit (pull_request) Successful in 20s
Check for missing migrations / migrations_check (pull_request) Successful in 1m35s
feat: Add git-hooks.nix
2025-01-12 11:21:08 +01:00

10 lines
223 B
INI

[flake8]
exclude = migrations
max-line-length = 88
ignore =
# whitespace before ':' (not PEP8-compliant for slicing)
E203,
# lambda expression
E731,
# line break before binary operator (not PEP8-compliant)
W503