We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 795a070 commit f955bf3Copy full SHA for f955bf3
setup.cfg
@@ -12,10 +12,11 @@ tag_prefix = v
12
parentdir_prefix = pandas-
13
14
[flake8]
15
-max-line-length = 79
+max-line-length = 88
16
ignore =
17
+ E501, # longer line length
18
W503, # line break before binary operator
- W504, # line break after binary operator
19
+ E203, # space before : (needed for how black formats slicing)
20
E402, # module level import not at top of file
21
E731, # do not assign a lambda expression, use a def
22
C406, # Unnecessary list literal - rewrite as a dict literal.
0 commit comments