From: Juan Luis Cano Rodríguez Date: Tue, 25 Jun 2019 14:27:02 +0000 (+0200) Subject: Ignore broken E203 (#910) X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/7c556faf5fc0747e60d85ff2a77e8138f9fd8b6b?hp=1fbf7251ccdb58ba93301622388615633ecc348a Ignore broken E203 (#910) See https://github.com/python/black/issues/565 --- diff --git a/README.md b/README.md index 986efb6..dc93b37 100644 --- a/README.md +++ b/README.md @@ -293,7 +293,7 @@ you are probably already using. You'd do it like this: max-line-length = 80 ... select = C,E,F,W,B,B950 -ignore = E501,W503 +ignore = E501,W503,E203 ``` You'll find *Black*'s own .flake8 config file is configured like this.