Skip to content

Latest commit

 

History

History
39 lines (23 loc) · 930 Bytes

CONTRIBUTING.md

File metadata and controls

39 lines (23 loc) · 930 Bytes

Thanks for your interest in contributing to ouch!

Code of Conduct

We follow the Rust Official Code of Conduct.

I want to ask a question or provide feedback

Create an issue or go to Ouch Discussions.

Adding a brand new feature

Before opening the PR, open an issue to discuss your addition, this increases the chance of your PR being accepted.

PRs

  • Pass all CI checks.
  • After opening the PR, add a CHANGELOG.md entry.

Updating UI tests

In case you need to update the UI tests.

  • Run tests with insta to create the new snapshots:
cargo insta review # or
cargo insta review -- ui # useful filter
  • Now, review the diffs you just generated.
cargo insta review
  • You can commit them now.