Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 1.15 KB

File metadata and controls

23 lines (15 loc) · 1.15 KB

Contributing

Thank you for helping improve dnsplane. This document covers the Developer Certificate of Origin (DCO) and practical checks before you open a PR.

Developer Certificate of Origin (DCO)

This project uses the Developer Certificate of Origin (DCO) to confirm that contributors are legally authorized to make their contributions. You must sign off on each commit by adding a Signed-off-by line.

How to sign off

  • When committing: Use git commit -s so Git adds the line automatically using your configured name and email.
  • Or add manually: The last line of your commit message must be:
    Signed-off-by: Your Name <your.email@example.com>
    

By signing off, you certify that you have the right to submit the work under the project’s license (see LICENSE).

Before you open a pull request

  • Code style: Follow the Google Go Style Guide.
  • Tests: New code should include tests. Run make test and make fuzz (where applicable) before submitting.
  • Checks: Run make test and make vet (or make lint) and fix any issues.