https://github.com/google/jax
Raw File
Tip revision: b53a1740428a1b44d2b9f7694a00263918e6a309 authored by jax authors on 17 November 2021, 01:17:01 UTC
Merge pull request #8564 from hawkinsp:testfix
Tip revision: b53a174
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