8000
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 f955bf3 commit d29415fCopy full SHA for d29415f
setup.cfg
@@ -15,8 +15,10 @@ parentdir_prefix = pandas-
15
max-line-length = 88
16
ignore =
17
E501, # longer line length
18
- W503, # line break before binary operator
19
E203, # space before : (needed for how black formats slicing)
+ E231, # space after comma (needed for how black formats getitem with final comma)
20
+ W503, # line break before binary operator
21
+ W504, # line break after binary operator
22
E402, # module level import not at top of file
23
E731, # do not assign a lambda expression, use a def
24
C406, # Unnecessary list literal - rewrite as a dict literal.
0 commit comments