Revision d91fe4caec6be197011fdd0a22cca5ba26d753a6 authored by Lena Martens on 25 January 2022, 17:23:30 UTC, committed by jax authors on 26 January 2022, 17:19:50 UTC
1 parent adda0a4
Raw File
setup.cfg
[flake8]
max-line-length = 88
ignore =
  C901 # object names too complex
  E111, E114 # four-space indents
  E121 # line continuations
  W503, W504 # line breaks around binary operators
max-complexity = 18
select = B,C,F,W,T4,B9,E225,E227,E228
exclude =
  .git,
  build,
  __pycache__
per-file-ignores =
  docs/autodidax.py:F811
back to top