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

fix camelcase

parent b1dd7d9a
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
- 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
- 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