Skip to content

Latest commit

 

History

History
25 lines (23 loc) · 878 Bytes

CONTRIBUTING.md

File metadata and controls

25 lines (23 loc) · 878 Bytes

Contributing to 2do.txt

Here is a quick guide to doing code contributions to this app.

  1. Fork this repository.
  2. Clone your fork locally.
  3. Install dependencies:
    npm install
  4. Create a new branch following the convention [type/scope]. Type can be either fix, feat, or any other conventional commit type. Scope is a short describes of the work.
  5. Start the app:
    npm run dev
  6. Make and commit your changes following the commit convention.
  7. Ensure tests and build passes:
    npm test
    npm run e2e
    npm run build
  8. Push your branch.
  9. Submit a pull request to the upstream 2do.txt repository.

Maintainers will merge the pull request by squashing all commits and editing the commit message if necessary.