Philipp "Flipsi" Moers

Results 5 issues of Philipp "Flipsi" Moers

Unlike #125, I think scapegoat really finds false positives for the **Empty if statement** warning. When defining a function like this: ``` def checkFoo(things: Future[Seq[String]]): Future[Unit] = { things.map(ts =>...

false positive

Similar to #46, but more complex, syntax is broken if triple quasi quotes with quotes (`s"""really "simple" example"""`) are used within [processed string literals](https://docs.scala-lang.org/overviews/core/string-interpolation.html) ("string interpolations"): ```scala object Main {...

Question: Is there support for command substitutions in shell commands? If not, consider this a feature request. I tried ``` :shell echo $(date) ``` and ``` :shell echo \$(date) ```...

enhancement

If I execute `:shell echo hello %s` on a file _filename.ext_ I will get ``` hello filename.ext ``` as expected. However if I execute `:shell echo hello %s.foo` I will...