-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.flake8
More file actions
11 lines (11 loc) · 521 Bytes
/
.flake8
File metadata and controls
11 lines (11 loc) · 521 Bytes
1
2
3
4
5
6
7
8
9
10
11
# Hopefully, flake8 will eventually support pyproject.toml, but for now, we'll
# put the settings here.
[flake8]
# In some cases, as determined by PEP 8, Black will enforce an equal amount of
# whitespace around slice operators. Due to this, Flake8 will raise E203
# whitespace before ':' warnings. Since this warning is not PEP 8 compliant,
# Flake8 should be configured to ignore it via extend-ignore = E203.
#
# Let's leave line-length to black and tell flake8 to just ignore line length
# (E501).
ignore = E203, E501