Grey2k / scala2-sbt-template

Scala2 Template Repo

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Scala 2 sbt project template

What included?

  • Git .gitignore file with IntelliJ / VSCode templates
  • Unit tests (scalatest + funsuite)
  • Linter (scalafix)
  • Formatter (scalafmt)
  • Makefile commands config

Makefile commands

Build & Run tests

make 

Run with all tests

make && make run

Just run

make run

# or
sbt run 

Run fmt

make fmt

Run tests

make test

# or
sbt test 

Run lint

make lint

# or
sbt scalafix 

About

Scala2 Template Repo

License:GNU General Public License v3.0


Languages

Language:Scala 65.0%Language:Makefile 35.0%