Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.14 KB

File metadata and controls

29 lines (21 loc) · 1.14 KB

Contributing

If you have any questions about this library, please feel free to raise an issue.

Please search existing issues for the same feature and/or issue before raising a new issue. Commenting on an existing issue is usually preferred over raising duplicate issues.

Please ensure that all files conform to the coding standards, using the same coding style as the rest of the code base. All unit tests should be updated and passing as well. All of this can easily be checked via command-line:

npm install
npm run build
npm run lint
npm test
# OR to run all of the above (excl. install):
npm run verify

You must have at least Node.js version v22 or newer installed.

You can run npm run lint:fix to automatically fix any linting and formatting issues that are found.

All pull requests should be made to the main branch.

Remember to add your details to the list of AUTHORS.md if you want your contribution to be recognized by others.