mirror of
https://git.meli.delivery/meli/meli
synced 2024-11-07 03:20:36 +00:00
3433f7c41e
Signed-off-by: Manos Pitsidianakis <manos@pitsidianak.is>
1.1 KiB
1.1 KiB
name | about | title | ref |
---|---|---|---|
Pull Request | Standard pull request template. | WIP: | master |
Summary of the PR
Requirements
Before submitting your PR, please make sure you have addressed the following requirements:
- All commits in this PR are signed (with
git commit -s
), and the commit has a message describing the motivation behind the change, if appropriate. - All added/changed public-facing functionality, especially configuration options, are documented in the manual pages.
- Any newly added
unsafe
code is properly documented. - Each commit has been formatted with
rustfmt
. Runmake fmt
in the project root. - Each commit has been linted with
clippy
. Runmake lint
in the project root. - Each commit does not break any test. Run
make test
in the project root. If you havecargo-nextest
installed, you can runcargo nextest run --all --no-fail-fast --all-features --future-incompat-report
instead.