Skip to content

Latest commit

 

History

History
28 lines (24 loc) · 962 Bytes

DEVELOPER_GUIDE.md

File metadata and controls

28 lines (24 loc) · 962 Bytes

Developer Guide

Package

If you want to package the single jar for, you can do so by running the following command:

sbt assembly

Integration Test

The integration test is defined in the integ-test directory of the project. If you want to run the integration test for the project, you can do so by running the following command:

sbt integtest/test

Scala Formatting Guidelines

For Scala code, flint use spark scalastyle. Before submitting the PR, make sure to use "scalafmtAll" to format the code. read more in scalafmt sbt

sbt scalafmtAll

The code style is automatically checked, but users can also manually check it.

sbt scalastyle

For IntelliJ user, read more in scalafmt IntelliJ to integrate scalafmt with IntelliJ