simulacrum-scalafix icon indicating copy to clipboard operation
simulacrum-scalafix copied to clipboard

Simulacrum as Scalafix rules

Results 22 simulacrum-scalafix issues
Sort by recently updated
recently updated
newest added

## About this PR 📦 Updates [org.scala-sbt:sbt](https://github.com/sbt/sbt) from `1.9.9` to `1.10.0` 📜 [GitHub Release Notes](https://github.com/sbt/sbt/releases/tag/v1.10.0) - [Version Diff](https://github.com/sbt/sbt/compare/v1.9.9...v1.10.0) ## Usage ✅ **Please merge!** I'll automatically update this PR to resolve...

## About this PR 📦 Updates [org.scala-lang:scala-library](https://github.com/scala/scala) from `2.13.10` to `2.13.14` 📜 [GitHub Release Notes](https://github.com/scala/scala/releases/tag/v2.13.14) - [Version Diff](https://github.com/scala/scala/compare/v2.13.10...v2.13.14) ## Usage ✅ **Please merge!** I'll automatically update this PR to resolve...

## About this PR 📦 Updates * [ch.epfl.scala:sbt-scalafix](https://github.com/scalacenter/sbt-scalafix) * [ch.epfl.scala:scalafix-core](https://github.com/scalacenter/scalafix) from `0.10.4` to `0.12.1` 📜 [GitHub Release Notes](https://github.com/scalacenter/sbt-scalafix/releases/tag/v0.12.1) - [Version Diff](https://github.com/scalacenter/sbt-scalafix/compare/v0.10.4...v0.12.1) ## Usage ✅ **Please merge!** I'll automatically update this...

## About this PR 📦 Updates [org.scala-lang:scala-library](https://github.com/scala/scala) from `2.12.17` to `2.12.19` 📜 [GitHub Release Notes](https://github.com/scala/scala/releases/tag/v2.12.19) - [Version Diff](https://github.com/scala/scala/compare/v2.12.17...v2.12.19) ## Usage ✅ **Please merge!** I'll automatically update this PR to resolve...

Some advanced semantic scalafix rules (like built-in `ExplicitResultTypes`) [requires setting up scalafixScalaBinaryVersion](https://scalacenter.github.io/scalafix/docs/developers/local-rules.html#prerequisite). Since simulacrum-scalafix in only built with scala 2.12 it's impossible to use it simultaneously with `ExplicitResultTypes` enabled. Please,...

Hi! Recently I wanted to update simulacrum-scalafix (due to scalafix upgrade), but it seems 0.6.0 was not published to [maven central](https://central.sonatype.com/search?q=simulacrum-scalafix)

over at https://github.com/scala/community-build/pull/1654, I am dropping simulacrum-scalafix from the Scala 2.13 community build because it has fallen too far out of date with these dependencies from my side, this isn't...

I not too familiar with macro annotations but I would like to propose a change of `op` annotation arguments from: ```scala final class op(name: String, alias: Boolean = false) extends...

This means we can't use simulacrum-scalafix to prepare [cats-tagless](https://github.com/typelevel/cats-tagless) for dotty support 😢 ### Example ```scala @typeclass trait FunctorK[A[_[_]]] extends InvariantK[A] { def mapK[F[_], G[_]](af: A[F])(fk: F ~> G): A[G]...

Problem: If I use chained package declarations for a type then `simulacrum-scalafix` rules doesn't find that type and hence doesn't boilerplate it up. I don't know if this is a...