Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 1.43 KB

CONTRIBUTING.md

File metadata and controls

41 lines (28 loc) · 1.43 KB

Contributing to Eclipse Kuksa

Thanks for your interest in this project.

Eclipse Contributor Agreement

Before your code contribution can be accepted by the project team contributors must electronically sign the Eclipse Contributor Agreement (ECA).

Commits that are provided by non-committers must have a Signed-off-by field in the footer indicating that the author is aware of the terms by which the contribution has been provided to the project. The non-committer must additionally have an Eclipse Foundation account and must have a signed Eclipse Contributor Agreement (ECA) on file.

For more information, please see the Eclipse Committer Handbook: https://www.eclipse.org/projects/handbook/#resources-commit

Contact

Contact the project developers via the project's "dev" list.

Pre-commit set up

This repository is set up to use pre-commit hooks. Use pip install pre-commit to install pre-commit. After you clone the project, run pre-commit install to install pre-commit into your git hooks. Pre-commit will now run on every commit. Every time you clone a project using pre-commit running pre-commit install should always be the first thing you do.

Linting

Please run the formatter and linter before opening pull requests:

cargo fmt -- --check
cargo clippy --all-targets -- -W warnings -D warnings