Make Scala compiler stop on first error
In sbt this is done quite simply by seting the maxErrors
setting:
maxErrors := 1
If you want to set it temporarily for your current session, just do:
set maxErrors := 1
just before doing ~run
In sbt this is done quite simply by seting the maxErrors
setting:
maxErrors := 1
If you want to set it temporarily for your current session, just do:
set maxErrors := 1
just before doing ~run