forked from ErikMinekus/sm-ripext
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
867 changed files
with
185,320 additions
and
100,784 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Classify all '.function' files as C for syntax highlighting purposes | ||
*.function linguist-language=C |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,19 @@ | ||
Notes: | ||
* Pull requests cannot be accepted until the PR follows the [contributing guidelines](../CONTRIBUTING.md). In particular, each commit must have at least one `Signed-off-by:` line from the committer to certify that the contribution is made under the terms of the [Developer Certificate of Origin](../dco.txt). | ||
* This is just a template, so feel free to use/remove the unnecessary things | ||
## Description | ||
A few sentences describing the overall goals of the pull request's commits. | ||
|
||
Please write a few sentences describing the overall goals of the pull request's commits. | ||
|
||
## Status | ||
**READY/IN DEVELOPMENT/HOLD** | ||
|
||
## Requires Backporting | ||
When there is a bug fix, it should be backported to all maintained and supported branches. | ||
Changes do not have to be backported if: | ||
- This PR is a new feature\enhancement | ||
- This PR contains changes in the API. If this is true, and there is a need for the fix to be backported, the fix should be handled differently in the legacy branch | ||
|
||
Yes | NO | ||
Which branch? | ||
## Gatekeeper checklist | ||
|
||
## Migrations | ||
If there is any API change, what's the incentive and logic for it. | ||
- [ ] **changelog** provided, or not required | ||
- [ ] **backport** done, or not required | ||
- [ ] **tests** provided, or not required | ||
|
||
YES | NO | ||
|
||
## Additional comments | ||
Any additional information that could be of interest | ||
|
||
## Todos | ||
- [ ] Tests | ||
- [ ] Documentation | ||
- [ ] Changelog updated | ||
- [ ] Backported | ||
## Notes for the submitter | ||
|
||
Please refer to the [contributing guidelines](../CONTRIBUTING.md), especially the | ||
checklist for PR contributors. | ||
|
||
## Steps to test or reproduce | ||
Outline the steps to test or reproduce the PR here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[mypy] | ||
mypy_path = scripts | ||
namespace_packages = True | ||
warn_unused_configs = True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# .readthedocs.yaml | ||
# Read the Docs configuration file | ||
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details | ||
|
||
# Required | ||
version: 2 | ||
|
||
# Set the version of Python and other tools you might need | ||
build: | ||
os: ubuntu-20.04 | ||
tools: | ||
python: "3.9" | ||
jobs: | ||
pre_build: | ||
- ./scripts/apidoc_full.sh | ||
- breathe-apidoc -o docs/api apidoc/xml | ||
|
||
# Build documentation in the docs/ directory with Sphinx | ||
sphinx: | ||
builder: dirhtml | ||
configuration: docs/conf.py | ||
|
||
# Optionally declare the Python requirements required to build your docs | ||
python: | ||
install: | ||
- requirements: docs/requirements.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.