web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
464 B

  1. # Contribution guidelines
  2. * Install/update the dependencies:
  3. ```
  4. npm i
  5. ```
  6. * Make sure all of the tests pass:
  7. ```
  8. npm t
  9. ```
  10. * Make sure the code lints:
  11. ```
  12. npm run lint
  13. ```
  14. * Adhere to the coding conventions
  15. that are used elsewhere in the codebase.
  16. * New code must have new unit tests.
  17. * New features
  18. or changes to existing features
  19. must be documented in the [readme file](README.md).
  20. * Add yourself to the [authors file](AUTHORS).