File size: 436 Bytes
7accb91
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[flake8]
ignore =
    # Whitespace before ':'
    E203,
    # Module level import not at top of file
    E402,
    # Line break occurred before a binary operator
    W503,
    # Line break occurred after a binary operator
    W504
    # line break before binary operator
    E203
    # line too long
    E501
    # No lambdas — too strict
    E731
    # Local variable name is assigned to but never used
    F841
max-line-length = 120