mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-08 08:43:53 +01:00
34 lines
921 B
Plaintext
34 lines
921 B
Plaintext
# DELETE THIS AFTER READING
|
|
|
|
# READ CONTRIBUTING.md
|
|
|
|
# PR title
|
|
|
|
Formatted as such:
|
|
CATEGORY: Change Description
|
|
|
|
CATEGORY is something like "API", "UI", "MISC", "STANEK", etc, and must be uppercase.
|
|
Change Description is what you'd tell a non-contributor to convey what is changed.
|
|
|
|
# Linked issues
|
|
|
|
If your pull request is related to a git issue, please link it in the description using #xyz.
|
|
If your PR should close the issue when it is merged in, use `fixes #xyz` or `closes #xyz` like this:
|
|
|
|
closes #xxxx
|
|
closes #yyyy
|
|
|
|
It'll automate the process.
|
|
|
|
# Documentation
|
|
|
|
- If your PR includes ns API function changes, do not manually modify markdown files.
|
|
- Instead, you can run `npm run doc` to autogenerate new markdown files that reflect your submitted API changes.
|
|
|
|
# Bug fix
|
|
|
|
- Include how it was tested
|
|
- Include screenshot / gif (if possible)
|
|
|
|
Make sure you run `npm run format` and `npm run lint` before pushing.
|