]>
git.madduck.net Git - etc/vim.git/blobdiff - README.md
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:
As for vertical whitespace, *Black* tries to render one full expression
or simple statement per line. If this fits the allotted line length,
great.
As for vertical whitespace, *Black* tries to render one full expression
or simple statement per line. If this fits the allotted line length,
great.
If not, *Black* will look at the contents of the first outer matching
brackets and put that in a separate indented line.
If not, *Black* will look at the contents of the first outer matching
brackets and put that in a separate indented line.
# in:
l = [[n for n in list_bosses()], [n for n in list_employees()]]
# in:
l = [[n for n in list_bosses()], [n for n in list_employees()]]
then *Black* will first try to keep them on the same line with the
matching brackets. If that doesn't work, it will put all of them in
separate lines.
then *Black* will first try to keep them on the same line with the
matching brackets. If that doesn't work, it will put all of them in
separate lines.
# in:
def very_important_function(template: str, *variables, *, file: os.PathLike, debug: bool = False):
"""Applies `variables` to the `template` and writes to `file`."""
# in:
def very_important_function(template: str, *variables, *, file: os.PathLike, debug: bool = False):
"""Applies `variables` to the `template` and writes to `file`."""
about it. Alternatively, use [Bugbear](https://github.com/PyCQA/flake8-bugbear)'s
B950 warning instead of E501 and keep the max line length at 80 which
you are probably already using. You'd do it like this:
about it. Alternatively, use [Bugbear](https://github.com/PyCQA/flake8-bugbear)'s
B950 warning instead of E501 and keep the max line length at 80 which
you are probably already using. You'd do it like this:
[flake8]
max-line-length = 80
...
[flake8]
max-line-length = 80
...
+### 18.3a1
+
+* fixed invalid spacing of dots in relative imports (#6, #13)
+
+* fixed spurious space in parenthesized set expressions (#7)
+
+
### 18.3a0
* first published version, Happy 🍰 Day 2018!
* alpha quality
### 18.3a0
* first published version, Happy 🍰 Day 2018!
* alpha quality
-* date-versioned (see: http://calver.org/)
+* date-versioned (see: https ://calver.org/)