We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c753b3f commit 073188bCopy full SHA for 073188b
setup.cfg
@@ -12,7 +12,11 @@ tag_prefix = v
12
parentdir_prefix = pandas-
13
14
[flake8]
15
-ignore = E731,E402,W503
+ignore =
16
+ E402, # module level import not at top of file
17
+ E731, # do not assign a lambda expression, use a def
18
+ E741, # do not use variables named 'l', 'O', or 'I'
19
+ W503 # line break before binary operator
20
max-line-length = 79
21
22
[yapf]
0 commit comments