-
Notifications
You must be signed in to change notification settings - Fork 0
Style guide
Kalle Johansson edited this page Aug 2, 2020
·
1 revision
We follow the guide Effective Dart so take a look at that before coding.
We always aim for our code to be self-documenting but it's always good to provide context and explain complex code using comments.
- We prefer named parameters when there is more than one parameter.
- We prefer a trailing comma in lists, parameters, etc.
- We prefer short files.
- We import local files with relative paths.