Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 372 Bytes

File metadata and controls

11 lines (7 loc) · 372 Bytes

Engineering conventions

Conventions

When writing code, follow these conventions

  • Do NOT add comments explaining what is each line/expression doing.
  • Try to keep the code uniform, and follow the style of the existing code.
  • Always use standalone Rust modules, avoid inline mods
  • Use structured logging, don't do string interpolation in logging statements.