black/.github/ISSUE_TEMPLATE/style_issue.md
Matteo Bertucci 7f138c1130
Issue templates: use HTML comments (#2269)
This commit makes use of HTML comments inside GitHub issue templates
to make sure that even if they aren't removed by the issue author they won't be shown
in the rendered output.

The goal is to simply make the issues less noisy by removing template messages.
2021-05-29 06:56:46 -07:00

38 lines
632 B
Markdown

---
name: Style issue
about: Help us improve the Black style
title: ""
labels: design
assignees: ""
---
**Describe the style change**
<!-- A clear and concise description of how the style can be
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
```
**Desired style**
<!-- How do you think _Black_ should format the above snippets: -->
```python
def f(
):
pass
```
**Additional context**
<!-- Add any other context about the problem here. -->