[flake8]
max-line-length = 132

# E122: continuation line missing indentation or outdented
# E127: Continuation line over-indented for visual indent
# E128: Continuation line under-indented for visual indent
# E129: Visually indented line with same indent as next logical line
# E226: Missing whitespace around arithmetic operator
# E241: Multiple spaces after ','
# E265: Block comment should start with '# '
# E501: Line too long (82 &gt; 79 characters)
# E741: Do not use variables named 'I', 'O', or 'l'
# F403: 'from module import *' used; unable to detect undefined names
# W504: Line break occurred after a binary operator

ignore = E122, E127, E128, E129, E226, E241, E265, E501, E741, F403, W504

per-file-ignores = __init__.py:F401

exclude = docs/, examples/, pynucastro/networks/tests/_python_reference/
