Skip to content

Commit 51a871b

Browse files
committed
first commit
1 parent 87148ee commit 51a871b

File tree

15 files changed

+1364
-0
lines changed

15 files changed

+1364
-0
lines changed

.github/.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Ignore everything
2+
*
3+
4+
# Except
5+
!ISSUE_TEMPLATE/
6+
!ISSUE_TEMPLATE/*
7+
8+
!.gitignore

.github/ISSUE_TEMPLATE/.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Ignore everything
2+
*
3+
4+
# Except
5+
!bug_report.yaml
6+
!feature_request.yaml
7+
!question.md
8+
9+
!.gitignore
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
name: Bug report
2+
description: Are you experiencing a problem? Create a report to help us improve!
3+
labels: "bug"
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
## Self Check
9+
- Try searching existing GitHub Issues (open or closed) for similar issues.
10+
- type: textarea
11+
validations:
12+
required: true
13+
attributes:
14+
label: Describe the bug
15+
description: A clear description of what the bug is.
16+
placeholder: e.g. I see an AssertionError when trying to ...
17+
- type: textarea
18+
validations:
19+
required: true
20+
attributes:
21+
label: How to reproduce
22+
description: |
23+
How to reproduce the problem.
24+
placeholder: e.g. I can reproduce this issue by...
25+
- type: textarea
26+
validations:
27+
required: true
28+
attributes:
29+
label: Expected behavior
30+
description: A brief description of what should happen.
31+
- type: textarea
32+
attributes:
33+
label: Screenshots and recordings
34+
description: |
35+
If applicable, add screenshots or videos to help explain your problem. (Videos should be as short as possible! Avoid watermarks too.)
36+
- type: input
37+
validations:
38+
required: true
39+
attributes:
40+
label: OS / Distro
41+
description: Include the version too, please!
42+
placeholder: e.g. Windows 10, Ubuntu 20.04, macOS 10.15...
43+
- type: input
44+
validations:
45+
required: true
46+
attributes:
47+
label: Output from `regex_toolkit.__version__`
48+
- type: textarea
49+
validations:
50+
required: false
51+
attributes:
52+
label: Backtrace
53+
description: What is the error regex_toolkit gives you, if any?
54+
- type: textarea
55+
attributes:
56+
label: Additional context
57+
description: Add any other context about the problem here.
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Feature Request
2+
description: Want a feature? Ask; we don't bite!
3+
labels: 'enhancement'
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
## Self Check
9+
- Try searching existing GitHub Issues (open or closed) for similar issues.
10+
- type: textarea
11+
validations:
12+
required: true
13+
attributes:
14+
label: Describe the feature
15+
description: A clear description of what the feature is.
16+
- type: textarea
17+
validations:
18+
required: false
19+
attributes:
20+
label: Would this fix a problem you're experiencing? If so, specify.
21+
- type: textarea
22+
attributes:
23+
label: Did you consider other alternatives?
24+
description: If so, specify
25+
- type: input
26+
attributes:
27+
label: Additional context

.github/ISSUE_TEMPLATE/question.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
name: Question
3+
about: Ask away! (Do not use this for bugs or features.)
4+
labels: "question"
5+
---

.gitignore

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Ignore everything
2+
*
3+
4+
# Except
5+
!setup.py
6+
!pyproject.toml
7+
8+
!tests/
9+
!tests/*
10+
11+
!src/
12+
!src/*
13+
14+
!LICENSE
15+
!README.md
16+
!.gitignore
17+
18+
!.git/
19+
!.git/*
20+
21+
!.github/
22+
!.github/*

0 commit comments

Comments
 (0)