This document is for people who want to contribute to this project!
We are using Prettier to format the code.
- Always use
PascalCasefor the files containing classes (example:Queue,Track,Playeretc.)
- Use
camelCaseforFunction names,Variables, etc. andPascalCaseforClass name - Do not make unused variables/imports
- Don't forget to write
JSDOCfor each properties and methods - Use English language
- Use English language
- Explain what your update does
- Run
npm run docs:testcommand to make sure documentation is working - Format the code properly with
npm run format