Skip to content

Latest commit

 

History

History
46 lines (28 loc) · 660 Bytes

CONTRIBUTING.md

File metadata and controls

46 lines (28 loc) · 660 Bytes

Contributing

After cloning the repository, run

# Install dependencies
npm install

# Enable git hooks
npx husky install

Node version

Use one of the following version:

  • v14 (use npm v7, run npm i -g npm@7)
  • v16
  • v18

Testing

Running the tests:

npm test

Code coverage

Please check the code coverage before submitting new code by opening the generated Istanbul files:

open coverage/lcov-report/index.html

Style guide

The JavaScript style guide is configured in the .eslintrc.js file and can be verified by running:

npm run lint