]> git.madduck.net Git - etc/vim.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Let readers know E203 and W503 are explained later
authorŁukasz Langa <lukasz@langa.pl>
Mon, 28 Oct 2019 12:21:30 +0000 (13:21 +0100)
committerŁukasz Langa <lukasz@langa.pl>
Mon, 28 Oct 2019 12:21:30 +0000 (13:21 +0100)
README.md

index cf9e0c1b2cb8c2a1d76211fed26637fbfe739a0d..380965824e3411e2b63ed1babcb2e091e09c7670 100644 (file)
--- 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".