Skip to content
This repository has been archived by the owner on Sep 2, 2023. It is now read-only.

Latest commit

 

History

History
executable file
·
60 lines (33 loc) · 2.32 KB

contributing.md

File metadata and controls

executable file
·
60 lines (33 loc) · 2.32 KB

Contribution Guide

I welcome contributions to this project. This guide outlines what's expected of you when you contribute, and what you can expect from me in return.

Table of Contents

What I expect from you

If you're going to contribute to this project, thanks! I have a few expectations of contributors:

  1. Follow the code of conduct
  2. Follow the technical contribution guidelines
  3. Be respectful of the time and energy that me and other contributors offer

What you can expect from me

If you're a contributor to this project, you can expect the following from me:

  1. I will enforce this project's code of conduct
  2. If I decide not to implement a feature or accept a PR, I will explain why

Contributing to this project does not:

  1. Guarantee you my (or any other contributor's) attention or time – I work on this in my free time and I make no promises about how quickly somebody will get back to you on a PR, Issue, or general query
  2. Mean your contribution will be accepted

Technical

To contribute to this project's code, clone this repo locally and commit your work on a separate branch. Open a pull-request to get your changes merged. If you're doing any large feature work, please make sure to have a discussion in an issue first – I'd rather not waste your time if it's not a feature I want to add to this project 🙂

I don't offer any guarantees on how long it will take me to review a PR or respond to an issue, as outlined here.

Linting

this project is linted using ESLint, configured in the way I normally write JavaScript. Please keep to the existing style.

ESLint errors will fail the build on any PRs. Most editors have an ESLint plugin which will pick up errors, but you can also run the linter manually with the following command:

npm run verify

Integration tests

This project has end to end integration tests, and these tests can fail the build on PRs. If you add or remove features, please update the tests to match.

You can run integration tests manually with the following command:

npm run test:integration