Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 635 Bytes

CONTRIBUTING.md

File metadata and controls

19 lines (13 loc) · 635 Bytes

Contributing

Keep in mind that the Nanogen goal is to remain simple and lightweight. If you have a feature request, please open an issue to discuss it before implementing it.

How Can I Contribute?

  • Reporting bugs
  • Suggesting enhancements
  • Fixing bugs
  • Implementing enhancements

Code quality checklist

Before submitting a code change, make sure the new code pass the following checks:

  • No lint errors: check with npm run lint
  • No code style differences: check with npm run prettier:check
  • No broken tests: check with npm run test
  • New code covered with new tests: check coverage with npm run test:coverage