From 6864f111fc7c998fc97374ff8583dfc5bf396178 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C5=81ukasz=20Langa?= Date: Mon, 28 Oct 2019 13:21:30 +0100 Subject: [PATCH] Let readers know E203 and W503 are explained later --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index cf9e0c1..3809658 100644 --- a/README.md +++ b/README.md @@ -274,11 +274,12 @@ You'd do it like this: max-line-length = 80 ... select = C,E,F,W,B,B950 -ignore = E501,W503,E203 +ignore = E203, E501, W503 ``` -You'll find _Black_'s own .flake8 config file is configured like this. If you're curious -about the reasoning behind B950, +You'll find _Black_'s own .flake8 config file is configured like this. Explanation of +why W503 and E203 are disabled can be found further in this documentation. And if you're +curious about the reasoning behind B950, [Bugbear's documentation](https://github.com/PyCQA/flake8-bugbear#opinionated-warnings) explains it. The tl;dr is "it's like highway speed limits, we won't bother you if you overdo it by a few km/h". -- 2.39.2