]> git.madduck.net Git - etc/vim.git/blob - .github/ISSUE_TEMPLATE/style_issue.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:

Fix issue templates + add docs template (#2399)
[etc/vim.git] / .github / ISSUE_TEMPLATE / style_issue.md
1 ---
2 name: Style issue
3 about: Help us improve the Black style
4 title: ""
5 labels: "T: design"
6 assignees: ""
7 ---
8
9 **Describe the style change**
10
11 <!-- A clear and concise description of how the style can be
12 improved. -->
13
14 **Examples in the current _Black_ style**
15
16 <!-- Think of some short code snippets that show
17 how the current _Black_ style is not great: -->
18
19 ```python
20 def f():
21     "Make sure this code is blackened"""
22     pass
23 ```
24
25 **Desired style**
26
27 <!-- How do you think _Black_ should format the above snippets: -->
28
29 ```python
30 def f(
31     ):
32     pass
33 ```
34
35 **Additional context**
36
37 <!-- Add any other context about the problem here. -->