]> 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:

Issue template: Add Python code formatting (#1485)
authorHugo van Kemenade <hugovk@users.noreply.github.com>
Mon, 15 Jun 2020 16:15:11 +0000 (19:15 +0300)
committerGitHub <noreply@github.com>
Mon, 15 Jun 2020 16:15:11 +0000 (09:15 -0700)
Makes things a bit more readable

.github/ISSUE_TEMPLATE/style_issue.md

index 4810ea415fedf8629665deba0fba79e7f38bf21c..6d1f246ed867f075e4d6e3de2e55886e31800305 100644 (file)
@@ -12,7 +12,7 @@ improved.
 **Examples in the current _Black_ style** Think of some short code snippets that show
 how the current _Black_ style is not great:
 
-```
+```python
 def f():
     "Make sure this code is blackened"""
     pass
@@ -20,7 +20,7 @@ def f():
 
 **Desired style** How do you think _Black_ should format the above snippets:
 
-```
+```python
 def f(
     ):
     pass