👍🎉 First of all, thank you for taking the time to contribute! 🎉👍
Contents
One may take any task from the unassigned issues without in progress
tag.
If you wish to take the task, leave a comment so we could add in progress
tag.
This will help to prevent having multiple Pull Requests for one issue.
- Use present tense ("add object" instead of "added object").
- Specify the commit type:
bugfix
- bug fixfix
- a small fixfeat
- featuretest
- writing testsrefactor
- refactoringdocs
- documentation
- Examples:
bugfix: reconnect after refresh
fix: style button roll-dice
feat: create order move players
test: add test buyCompany
refactor: reorganize server/index.ts
docs: update readme
All of the JavaScript code is formatted using Prettier.
-
Do not use
export default
if possible// Use this: export class ClassName {} // Instead of: export default class ClassName {}
-
All of the files and folders should be named in
kebab-case