Skip to content

Commit

Permalink
NamedDialect: add scala36 as a supported version
Browse files Browse the repository at this point in the history
  • Loading branch information
kitbellew committed Dec 28, 2024
1 parent adaa1f4 commit e140b17
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
21 changes: 13 additions & 8 deletions docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,14 +113,19 @@ used to select it.
Available dialects are:

- `scala211`
- `scala212`
- `scala212source3`
- `scala213`
- `scala213source3`
- `scala3`
- `sbt0137`
- `sbt1`
- Scala 2
- `scala211`
- `scala212`
- `scala212source3`
- `scala213`
- `scala213source3`
- Scala 3
- `scala3`: most recent release
- `Scala3Future`: scala3 plus experimental, unreleased features
- specific versions from `Scala30` to `Scala36`
- sbt-specific
- `sbt0137`
- `sbt1`

You can also specify `runner.dialect` for a subset of files using [fileOverride](#fileoverride):

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ object NamedDialect {
Scala33,
Scala34,
Scala35,
Scala36,
).map(apply).sortBy(_.name)

private[config] val defaultName = "default"
Expand Down

0 comments on commit e140b17

Please sign in to comment.