From: Michael Aquilina Date: Sat, 18 Jan 2020 15:17:06 +0000 (+0200) Subject: Add comment to flake8 configuration explaining line-length mismatch (#1206) X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/70af20eb503ff0fcf00f9fd190a9dcfc40cd7be0 Add comment to flake8 configuration explaining line-length mismatch (#1206) --- diff --git a/.flake8 b/.flake8 index 498b2cb..cee6db4 100644 --- a/.flake8 +++ b/.flake8 @@ -1,5 +1,7 @@ [flake8] ignore = E203, E266, E501, W503 +# line length is intentionally set to 80 here because black uses Bugbear +# See https://github.com/psf/black/blob/master/README.md#line-length for more details max-line-length = 80 max-complexity = 18 select = B,C,E,F,W,T4,B9