Skip to content

Commit d504b1c

Browse files
committed
Initial commit
0 parents  commit d504b1c

8 files changed

Lines changed: 871 additions & 0 deletions

File tree

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
name: "🐛 Bug Report"
3+
about: Report a reproducible bug or regression.
4+
title: 'Bug: '
5+
labels: 'Status: Unconfirmed'
6+
7+
---
8+
9+
<!--
10+
Please provide a clear and concise description of what the bug is. Include screenshots if needed.
11+
-->
12+
## Steps To Reproduce
13+
14+
1.
15+
2.
16+
17+
<!--
18+
Your bug will get fixed much faster if we can run your code. Issues without reproduction steps or code examples may be immediately closed as not actionable.
19+
-->
20+
21+
Link to code example:
22+
23+
<!--
24+
Please provide a CodeSandbox (https://codesandbox.io/s/new), a link to a repository on GitHub, or provide a minimal code example that reproduces the problem. You may provide a screenshot of the application if you think it is relevant to your bug report. Here are some tips for providing a minimal example: https://stackoverflow.com/help/mcve.
25+
-->
26+
27+
## The current behavior
28+
29+
30+
## The expected behavior
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
name: Feature Request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
## What
11+
12+
**Is your feature request related to a problem? Please describe.**
13+
- Clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
14+
15+
## How
16+
17+
**Describe the solution you'd like**
18+
- Clear and concise description of what you want to happen.
19+
20+
**Describe alternatives you've considered**
21+
- Clear and concise description of any alternative solutions or features you've considered.
22+
23+
24+
## {Subtitle} (e.g., Why)
25+
26+
**Additional context**
27+
- Add any other context or screenshots about the feature request here.

.github/pull_request_template.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<!--
2+
3+
Note: Remember to add the 'in progress' label, if this PR is still a work-in-progress and create a draft PR. Once it's ready, please remove the label and mark the PR as ready for review!
4+
-->
5+
6+
## Description
7+
8+
<!-- Write a brief description of the changes introduced by this PR -->
9+
10+
### Documentation
11+
12+
<!--
13+
If this is a feature PR, then where is it documented?
14+
15+
- If docs exist:
16+
- Update any references, if relevant.
17+
- If no docs exist:
18+
- Create a stub for documentation including bullet points for how to use the feature, code snippets (including from happy path tests), etc.
19+
-->
20+
21+
<!-- Important: Did you make any backward incompatible changes? If yes, then you must write a migration guide! -->
22+
23+
## TODOs
24+
25+
Please ensure all of these TODOs are completed before asking for a review.
26+
27+
- [ ] Ensure the branch is named correctly with the issue number. e.g: `feat/310-new-endpoint` or `bug/322-fix-missing-param`.
28+
- [ ] Update the docs.
29+
- [ ] Keep the changes backward compatible where possible.
30+
- [ ] Run the pre-commit checks successfully.
31+
32+
## Related Issues
33+
34+
<!--
35+
Link to related issues, and issues fixed or partially addressed by this PR.
36+
e.g. Fixes #1234
37+
e.g. Closes #1234
38+
e.g. Related to #1234
39+
-->

.gitignore

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
## Testing
2+
/coverage
3+
4+
## Misc
5+
.DS_Store
6+
.vscode
7+
.idea
8+
9+
## Logs
10+
*.log
11+
npm-debug.log*
12+
yarn-debug.log*
13+
yarn-error.log*
14+
# Installer logs
15+
pip-log.txt
16+
pip-delete-this-directory.txt
17+
# Unit test / coverage reports
18+
htmlcov/
19+
.tox/
20+
.nox/
21+
.coverage
22+
.coverage.*
23+
.cache
24+
nosetests.xml
25+
*.cover
26+
*.py,cover
27+
.hypothesis/
28+
.pytest_cache/
29+
30+
## Byte-compiled / optimized / DLL files
31+
__pycache__/
32+
*.py[cod]
33+
*$py.class
34+
35+
## IPython
36+
profile_default/
37+
ipython_config.py
38+
39+
## pyenv
40+
.python-version
41+
42+
## Environment
43+
*.env
44+
.env.*
45+
.venv
46+
47+
## mypy
48+
.mypy_cache/
49+
.dmypy.json
50+
dmypy.json

.pre-commit-hooks.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
- id: branch-validate
2+
name: branch-validate
3+
description: Enforce git branch naming conventions in repository
4+
entry: githooks/branch_validate.sh
5+
language: script

0 commit comments

Comments
 (0)