forked from pynucastro/pynucastro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.flake8
20 lines (16 loc) · 816 Bytes
/
.flake8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[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 > 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/