rocm_jax/setup.cfg

23 lines
486 B
INI
Raw Permalink Normal View History

[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
2021-03-12 19:42:14 -08:00
exclude =
.git,
build,
2021-03-12 19:42:14 -08:00
__pycache__
per-file-ignores =
docs/autodidax.py:F811
2022-04-21 13:44:12 -07:00
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