cayhorstmann
cayhorstmann
The problem is that predefined entities are turned into Atom(c), where c is the character represented by the entity. For example, < turns into an Atom('
I guess that in the context of Scala 3, automatic derivation means to provide ``` inline given anyName[T](using m: Mirror.Of[T]): Eq[T] = ``` inside the companion object. Then all matching...
I don't know if this is the right place for this comment, but here goes: Indentation with quiet syntax is currently unusable. 1. Enter. Try typing ``` def fun =...
In Scala 2, both Enter and Tab work as expected. I just checked with a Scala 2 project. The issue is the quiet (brace-free) syntax, which changes how Tab must...
You should only look at the preceding line. If that's not correctly indented, it's not for you to fix. If the preceding line is one of the few special constructs...
I am running with Ubuntu 20.04 and the following in Help -> About: ``` The version of the notebook server is: 6.0.3 The server is running on this version of...
Just pretty-printing the example code, > The same issue #132 with solution is not a solution. It is far less useful than generating a live preview.
Even if you just have a single shape, the result is insufficient. For example, ``` StudienDetails.propTypes = { studie: PropTypes.shape({ studienleitername: PropTypes.string, studienleiteremail: PropTypes.string, studienstunden: PropTypes.number, startdatum: PropTypes.instanceOf(Date), enddatum: PropTypes.instanceOf(Date),...