]> git.madduck.net Git - etc/vim.git/blob - .github/ISSUE_TEMPLATE/bug_report.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 / bug_report.md
1 ---
2 name: Bug report
3 about: Create a report to help us improve
4 title: ''
5 labels: bug
6 assignees: ''
7
8 ---
9
10 **Describe the bug**
11 A clear and concise description of what the bug is.
12
13 **To Reproduce**
14 Steps to reproduce the behavior:
15 1. Take this file '...'
16 2. Run *Black* on it with these arguments '....'
17 3. See error
18
19 **Expected behavior**
20 A clear and concise description of what you expected to happen.
21
22 **Environment (please complete the following information):**
23 - Version: [e.g. master]
24 - OS and Python version: [e.g. Linux/Python 3.7.4rc1]
25
26 **Does this bug also happen on master?**
27 To answer this, you have two options:
28 1. Use the online formatter at https://black.now.sh/?version=master, which will use the latest master branch.
29 2. Or run *Black* on your machine:
30     * create a new virtualenv (make sure it's the same Python version);
31     * clone this repository;
32     * run `pip install -e .`;
33     * make sure it's sane by running `python setup.py test`; and
34     * run `black` like you did last time.
35
36 **Additional context**
37 Add any other context about the problem here.