/ .flake8
.flake8
 1  [flake8]
 2  
 3  # This is larger than the default from black.
 4  #
 5  # We let black wrap our code to its default width of 88, but
 6  # we allow comments and strings (which black doesn't touch)
 7  # to be this wide.
 8  max-line-length = 99
 9  
10  extend-ignore =
11      # Whitespace before colon in `a[x + 1 :]`
12      # (We allow this for clarity, and so does black.)
13      E203