Skip to content
Closed
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,11 @@ In order to reduce the number of notifications sent to the maintainers, please:
- [ ] All filenames are in PascalCase.
- [ ] All functions and variable names follow Java naming conventions.
- [ ] All new algorithms have a URL in their comments that points to Wikipedia or other similar explanations.
- [ ] All new code is formatted with `clang-format -i --style=file path/to/your/file.java`
- [ ] All new code is formatted with `clang-format -i --style=file path/to/your/file.java`

# Formatting Steps
Please ensure your code follows these formatting steps before submitting your pull request:

- Run the code through [Black](https://black.readthedocs.io/en/stable/) for consistent code formatting.
- Use [Flake8](https://flake8.pycqa.org/en/latest/) to check for style guide enforcement and linting.
- Make sure all tests pass before submitting the pull request.