Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 349 Bytes

README.md

File metadata and controls

10 lines (8 loc) · 349 Bytes

Scala

  • Avoid var.
  • Avoid implicit conversions.
  • Avoid wildcard imports except for implicits.
  • Avoid null except when necessary for Java compatibility.
  • Prefer a lazy effect type like cats.effect.IO to scala.concurrent.Future.
  • Use scalafmt to automatically format as much as possible.