-
Notifications
You must be signed in to change notification settings - Fork 61
Coding Guidelines
João GS Pereira edited this page Jun 24, 2025
·
6 revisions
This section contains guidelines for coding style and good programming practices used by this project. Please go to the source code organization page, to get a more accurate picture of the project
- Use kebab-case for
foldersandfiles.- This approach is used to ensure compatibility between the various OS's, since in systems like Windows and Mac, the standard behavior is to be case-insensitive.
- Use camelCase for
variablesandconstants. - Use camelCase for
functionsandmethods. - Use camelCase for
classes instances. - Use PascalCase for
classes declarations. - Use PascalCase for
typesandinterfaces. - Use whole words in names when possible
- Do not introduce new
typesorvaluesto the global namespace
- Use JSDoc style comments.
- Other coding styles will be handle by
ESLintandPrettier.
Made based on Microsoft wiki for vscode.
Project Management
Contributing
- How to Contribute
- Source Code Organization
- Coding Guidelines
- Working on Guides
Documentation