Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-25T19:43:16.000Z (almost 2 years ago)
- Last Synced: 2024-04-28T04:59:48.641Z (9 months ago)
- Topics: linter, scala, scalafix
- Language: Scala
- Homepage: https://www.scalalint.org
- Size: 521 KB
- Stars: 7
- Watchers: 4
- Forks: 1
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Scalalint
![Travis](https://img.shields.io/travis/pdalpra/scalalint) ![Maven metadata URL](https://img.shields.io/maven-metadata/v?label=maven%20central&metadataUrl=http%3A%2F%2Fcentral.maven.org%2Fmaven2%2Forg%2Fscalalint%2Frules_2.12%2Fmaven-metadata.xml) ![Gitter](https://img.shields.io/gitter/room/scalalint/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) !