🎉 Thanks for taking the time to contribute! 🎉 Contributions are welcome from anyone, and even the smallest of fixes is appreciated!
The following is a set of guidelines for contributing to Keep and its packages. These are mostly guidelines, not rules. Use your best judgment, and feel free to propose changes to this document in a pull request.
-
Clone your fork
-
Follow the installation & build steps in the README.
-
Set up the Development Tooling.
-
Open a PR against the
main
branch and describe the change you are intending to undertake in the PR description.
Before marking the PR as ready for review, make sure:
-
It passes the linter checks (see Pre-commit to make this automatic).
-
It passes the continuous integration tests.
-
Your changes have sufficient test coverage (e.g regression tests have been added for bug fixes, unit tests for new features)
Commits must be signed.
Keep uses Github Actions for continuous integration. All jobs must be green to merge a PR.
Pre-commit is a tool to install hooks that check code before commits are made.
It can be helpful to install this, to automatically run linter checks and avoid
pushing code that will not be accepted. Follow the
installation instructions here, and then run
pre-commit install
to install the hooks. Note that the
scripts/macos-setup.sh
script should automatically set this up for you.
Linters and formatters for Solidity, JavaScript, and Go code are set up and run automatically as part of pre-commit hooks. These are checked again in CI builds to ensure they have been run and are passing.
If you want to change a rule, or add a custom rule, to the JavaScript or Solidity linting, please propose these changes to our solium-config-keep and eslint-config-keep packages. All other packages have it as a dependency.