Skip to the content.
Golden rules
- To Hell with the
class
keyword, only use functional programming.
- Document everything. If unsure, ask a teammate! Knowledge is power.
- Prefer
type
over interface
.
- Without over-engineering, isolate UI librairies and icons into the
components
folder.
- Use
yarn
, never npm
.
- Always use a linter, in a way, it can act as pre-build testing.
- Domain logic shouldn’t be placed in the frontend, nor should it be tested here. Leave it in
server
.
- A good CI is not a nice-to-have, it is a necessity.
- English is the only used language.