Todd O'Bryan
Todd O'Bryan
This keeps happening every time I change something in the Gradle files. Having to invalidate caches every time is really slowing me down.
Sorry. This is in a very complicated work project, so I can't share. I'll try to reproduce in a smaller project, but if anyone has something that they can share,...
See https://json5.org/. I suppose someone could create a configuration flag.
This is completely off-topic, but I've been working on a parsing framework and thought about dealing with whitespace/comments in the Reader before it gets to the parser and making it...
My issue is that it's only legal to start JavaFX (or ScalaFX) once in a JVM. If the console isn't forked and is running in the same JVM as sbt,...
I suggested ktfmt and one of my colleagues saw this immediately. We actually got: ``` val json = """ [ { "referenceID": "ac1", "name": "attributeConfig1", "description": "the first attribute config",...
But this in a comment box and try replacing `posn-fun`. ``` ;; posn-fun -> ? ;; consumes: ;; produces: (define (posn-fun a-posn) (posn-x a-posn) (posn-y a-posn)) (check-expect (posn-fun ...) ...)...
Ah. I left out another pertinent example. Function calls can also be expressions. ``` myFuncThatReturnsList()[3] ``` which could be a value or the left side of an assignment. The thing...