Revision 2dfc5f962bfcad645860a4c1fece7280d4ac20bb authored by jax authors on 07 October 2020, 05:59:09 UTC, committed by jax authors on 07 October 2020, 05:59:09 UTC
2 parent s cf1fefc + 1c5a09a
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
exclude = 
  .git,
  build,
  __pycache__
back to top