summaryrefslogtreecommitdiff
path: root/.flake8
blob: 7162dbfc233227a8f842647960c1d06135376d63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
[flake8]

# This is larger than the default from black.
#
# We let black wrap our code to its default width of 88, but
# we allow comments and strings (which black doesn't touch)
# to be this wide.
max-line-length = 99

extend-ignore =
    # Whitespace before colon in `a[x + 1 :]`
    # (We allow this for clarity, and so does black.)
    E203