We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
*
_
Sometimes we do
import cats.syntax.all.*
and sometimes we
import cats.syntax.all._
Let's choose one and stick with it. Can we enforce this with a scalafmt rule?
The text was updated successfully, but these errors were encountered:
Can we enforce this with a scalafmt rule?
I think so using the scala3 rewrites, docs here: https://scalameta.org/scalafmt/docs/configuration.html#rewritescala3converttonewsyntax
And the dialect rule that can control just the import wildcard is this one: https://github.com/scalameta/scalameta/blob/8b190319f53a4545cbfe09a0ef19b22361b8a3d4/scalameta/dialects/shared/src/main/scala/scala/meta/Dialect.scala#L134-L135
Sorry, something went wrong.
No branches or pull requests
Sometimes we do
and sometimes we
Let's choose one and stick with it.
Can we enforce this with a scalafmt rule?
The text was updated successfully, but these errors were encountered: