Revision 38fb8ed22f1cb997a9f4eddaf72e37f310d65da4 authored by Peter Hawkins on 23 September 2022, 16:32:00 UTC, committed by jax authors on 23 September 2022, 16:32:47 UTC
1 parent 6c47dc5
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
  jax/*.py:F401
  jax/**/__init__.py:F401
  jax/experimental/*.py:F401
  jax/lax/*.py:F401
  jax/nn/*.py:F401
  jax/numpy/*.py:F401
  jax/scipy/**/*.py:F401
back to top