Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 294 Bytes

style.md

File metadata and controls

12 lines (8 loc) · 294 Bytes

Coding guideline

Import organization

Imports should be grouped into 4 sections separated by a newline in the following order:

  1. From the same crate
  2. From the same workspace
  3. From other crates
  4. From std

Within each groups, the imports should be in increasing alphabetical order.