https://github.com/pdalpra/scalalint
A Scala linter built on Scalafix
https://github.com/pdalpra/scalalint
linter scala scalafix
Last synced: about 2 months ago
JSON representation
A Scala linter built on Scalafix
- Host: GitHub
- URL: https://github.com/pdalpra/scalalint
- Owner: pdalpra
- Created: 2019-10-29T12:08:22.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-25T19:43:16.000Z (over 2 years ago)
- Last Synced: 2025-03-29T10:22:11.376Z (2 months ago)
- Topics: linter, scala, scalafix
- Language: Scala
- Homepage: https://www.scalalint.org
- Size: 521 KB
- Stars: 7
- Watchers: 3
- Forks: 1
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Scalalint
  
Scalalint is a Scala linter tool, built using [Scalafix](https://scalacenter.github.io/scalafix/).
### Setup
Setup the `scalafix` plugin in your sbt build. In `project/plugins.sbt`, add:
```sbt
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.9.8")
```Then enable Scalalint rules in your build, in `build.sbt`:
```sbt
scalafixDependencies in ThisBuild += "org.scalalint" %% "rules" % "0.1.4"
```For more information, head to the [microsite](https://www.scalalint.org) !