Clear and concise Code
- Variables and Function Names should have meaningful names and we try to follow the Julia naming convention. Try to find names that are descriptive and domain specific, e.g.
generate_events
. - Try to structure your program into meaningful subfunctions. As a rule of thumb, if your function is longer than 50 lines of code, has nested loops, nested if-else clauses, you'd better have a justification for it, or refactor it into smaller, reusable (and testable) functions.
- Structure your functions into multiple files, separated on a conceptual basis.
- Try to keep formatting consistent across all files.
- Minimize external dependencies. Use external libraries only when necessary to avoid compatibility issues and reduce installation and load times.
- Comment your code, especially if the code is not self-explanatory.
- Modularity: It's best if users can customize functionality without having to modify the package code. Good practices: avoid hardcoded parameters, make attributes (e.g. in figures) customizable, use inheritance from
AbstractTypes
. - Most users will not check the defaults, make sure the defaults are sensible, potentially nudge users to provide their own with warnings.
Backward compatibility
Ideally, new versions should produce the same results without any changes to the user's code. If not, a breaking release is required to indicate changed behavior.
- Maintain a clear changelog for new releases. Include down major and breaking changes, new features, documentation updates, and bug fixes. Example.
- Avoid breaking changes when possible. The change is considered as breaking if you alter:
- function names;
- argument names;
- output formats (e.g. switching from
dict
tovector
).
- Use deprecation warnings. If a feature is going to be removed in a future release, use deprecation warnings (`@deprecate') to tell users what has changed and how to use the function now.
User-Friendliness / Documentation
- Every function exposed to the user should have docstrings specifying all parameters, their types, and input/output arguments. Check the Template.
- Try to organise your documentation based on four ways of documentation: tutorials, how-to's, explanation and reference documentation.
- Try to include visuals and code examples in the documentation.
- Provide meaningful error messages that guide users to solutions.
- If possible, test the usability of your documentation with non-expert users to identify areas for improvement.
Written by Vladimir Mikheev