Skip to content

Latest commit

 

History

History
39 lines (29 loc) · 1.09 KB

CONTRIBUTING.md

File metadata and controls

39 lines (29 loc) · 1.09 KB

Contributing Guide

Code of Conduct and Style Guide

Please read our code of conduct and style guide before contributing.

Issues

  1. Check for existing issues before creating a new one.
  2. When creating an issue, be clear, provide as much detail as possible and provide examples, when possible.

Pull Requests

  1. Install the Deno CLI.

  2. Fork and clone the repository.

  3. Set up git submodules:

    git submodule update --init
  4. Create a new branch for your changes.

  5. Make your changes and ensure deno task ok passes successfully.

  6. Commit your changes with clear messages.

  7. Submit a pull request with a clear title and description of your changes and reference any relevant issues.

    Examples of good titles:

    • fix(http): fix race condition in server
    • docs(fmt): update docstrings
    • feat(log): handle nested messages

    Examples of bad titles:

    • fix #7123
    • update docs
    • fix bugs