We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8768876 commit 5af06f0Copy full SHA for 5af06f0
.pep8speaks.yml
@@ -6,5 +6,7 @@ scanner:
6
pycodestyle:
7
max-line-length: 79
8
ignore: # Errors and warnings to ignore
9
- - E731
10
- - E402
+ - E402, # module level import not at top of file
+ - E731, # do not assign a lambda expression, use a def
11
+ - E741, # do not use variables named 'l', 'O', or 'I'
12
+ - W503 # line break before binary operator
0 commit comments