Skip to content

Latest commit

 

History

History
66 lines (43 loc) · 2.29 KB

CONTRIBUTING.md

File metadata and controls

66 lines (43 loc) · 2.29 KB

Contribution Guideline

Scarb is actively developed and open for contributions!

Want to get started? Grab any unassigned issue labeled with help-wanted!

Looking for some easy warmup tasks? Check out issues labeled with good-first-issue!

Need some guidance? Reach out to other developers on Telegram!

Environment setup

Latest stable Rust is the only thing you really need. It is recommended to use rustup for getting it.

If you wish to work on Scarb's website, you will need Node.js. We recommend to install it using asdf (via nodejs plugin).

Contributing

Before you open a pull request, it is always a good idea to search the issues and verify if the feature you would like to add hasn't been already discussed. We also appreciate creating a feature request before making a contribution, so it can be discussed before you get to work.

Writing Tests

Please make sure the feature you are implementing is thoroughly tested with automatic tests. You can check test already in the repository, to see how to approach that.

Breaking Changes

If the change you are introducing is changing or breaking the behavior of any already existing features, make sure to include that information in the pull request description.

Running Tests and Checks

Before creating a contribution, make sure your code passes the following checks:

cargo fmt
cargo clippy
cargo test

Otherwise, it won't be possible to merge your contribution.

Git

Try to make small PRs, that could be squashed into a single commit. For larger work, try to make your commits small, self-contained and well described. Each commit should pass lints and tests. Then, set up a stack of pull requests, separate PR for each commit, and pointing to the previous one.

While your PR is being reviewed on, you can push merge commits and use git commit --fixup to push further changes to your commits.


Thanks! ❤️ ❤️ ❤️

Scarb Team