Contributing guide
Code style
A more compact form of code is preferred over an expanded form.
This means that this:
is preferred over:
Tab indent is used instead of space indent.
Strings should use doubled quotes instead of single ones unless
double quotes are included in the string itself.
This means that this:
is preferred over:
and this:
is preferred over:
pre-commit should also be ran before commiting code.
Commit messages
It is recommended that the conventional commits
scheme not be used. Commit messages should accurately
describe what has changed.