Skip to content
Snippets Groups Projects
Commit cc83a003 authored by Peter van 't Hof's avatar Peter van 't Hof
Browse files

Added more to code style

parent b7a8b9dd
No related branches found
No related tags found
No related merge requests found
# Developer - Code style
- Variable names should alway be in *camelcase* and do **not** start with a capital letter
- Class names should alway be in *Camelcase* and do **always** start with a capital letter
\ No newline at end of file
- Class names should alway be in *Camelcase* and do **always** start with a capital letter
- Avoid using null, the Option type in scala can be used instead
- If a method/value is designed to be overridden make it a `def` and override it with a `def`, do not use `val`
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment