Skip to content
This repository was archived by the owner on Jun 14, 2024. It is now read-only.

Latest commit

 

History

History
20 lines (15 loc) · 1.04 KB

scala-coding-style.md

File metadata and controls

20 lines (15 loc) · 1.04 KB

Scala Coding Style

Note: Databricks Style Guide will be preferred for conflict resolutions.

  • For formatting, scalafmt is used with the custom configuration (found in /dev/.scalafmt.conf)

    • Set scalafmt as the formatter
      • Open Preferences (Settings if you use Windows) > Editor > Code Style > Scala
      • Select Scalafmt as the formatter
      • Check 'Reformat on file save'
      • Select ./dev/.scalafmt.conf for Configuration Setting
    • Detailed installation of scalafmt can be found here
  • There is also a Scala style check using scalastyle-config.xml, which is run automatically when you compile your project using sbt.