summaryrefslogtreecommitdiff
path: root/.flake8
diff options
context:
space:
mode:
Diffstat (limited to '.flake8')
-rw-r--r--.flake83
1 files changed, 2 insertions, 1 deletions
diff --git a/.flake8 b/.flake8
index a5e26e2c..2ca44a12 100644
--- a/.flake8
+++ b/.flake8
@@ -2,7 +2,8 @@
max-line-length = 100
# Ignore non PEP 8 compliant rules as suggested by black
extend-ignore =
- E203 # https://github.com/psf/black/blob/master/docs/the_black_code_style.md#slices
+ E203, # https://github.com/psf/black/blob/master/docs/the_black_code_style.md#slices
+ E501
exclude = _vendored
per-file-ignores =
isort/__init__.py:F401