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

Create new issue templates (#934)
[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: design
6 assignees: ''
7
8 ---
9
10 **Describe the style change**
11 A clear and concise description of how the style can be improved.
12
13 **Examples in the current *Black* style**
14 Think of some short code snippets that show how the current *Black* style is not great:
15 ```
16 def f():
17     "Make sure this code is blackened"""
18     pass
19 ```
20
21 **Desired style**
22 How do you think *Black* should format the above snippets:
23 ```
24 def f(
25     ):
26     pass
27 ```
28
29 **Additional context**
30 Add any other context about the problem here.