Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 1.04 KB

CONTRIBUTING.md

File metadata and controls

38 lines (26 loc) · 1.04 KB

Contribution guidelines

Thank you for considering to help this project.

We welcome all support, whether on bug reports, feature requests, code, design, reviews, tests, documentation, and more.

Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.

Development

Install

Clone the project on your computer. You will also need Node and nvm.

nvm install
# Then, install all project dependencies.
npm install

Working on the project

Everything mentioned in the installation process should already be done.

# Make sure you use the right node version.
nvm use
# Start the server and the development tools.
npm run start
# Runs linting.
npm run lint
# View other available commands with:
npm run

Code style

This project uses Prettier and ESLint. All code should always be checked with those tools.