1[flake8]
2ignore =
3    # E241: multiple spaces after ':'
4    E241,
5    # E251: unexpected spaces around keyword / parameter equals
6    E251,
7    # E261: at least two spaces before inline comment
8    E261,
9    # E265: block comment should start with '# '
10    E265,
11    # E501: line too long
12    E501,
13    # E302: expected 2 blank lines, found 1
14    E302,
15    # E305: expected 2 blank lines after class or function definition, found 1
16    E305,
17    # E401: multiple imports on one line
18    E401,
19    # E266: too many leading '#' for block comment
20    E266,
21    # E402: module level import not at top of file
22    E402,
23    # E731: do not assign a lambda expression, use a def (too many false positives)
24    E731,
25    # E741: ambiguous variable name 'l'
26    E741,
27    # W504: line break after binary operator
28    W504,
29    # A003: builtin class attribute
30    A003
31max-line-length = 120
32