920 B
920 B
Contributing to Nomos Node
We're glad you're interested in contributing to Nomos Node!
This document describes the guidelines for contributing to the project. We will be updating it as we grow and we figure out what works best for us.
If you have any questions, come say hi to our Discord!
Running Pre-Commit Hooks
To ensure consistent code quality, we ask that you run the pre-commit
hooks before making a commit.
These hooks help catch common issues early and applies common code style rules, making the review process smoother for everyone.
- Install the pre-commit tool if you haven't already:
# On Fedora
sudo dnf install pre-commit
# On other systems
pip install pre-commit
- Install the pre-commit hooks:
pre-commit install
- That's it! The pre-commit hooks will now run automatically when you make a commit.