- Write performant code. Always prefer performance over other things.
- Write comments in English.
- Do not use unstable, nightly only features.
- When creating Atom instances, it's better to use Cow or &str instead of String. Note that
&str
is better thanCow<str>
here. - Write unit tests for your code.
- When instructed to fix tests, do not remove or modify existing tests.
- Write documentation for your code. The documentation should be written in English.
- If you are not sure about something, ask me.